Git Product home page Git Product logo

centos2ol's Introduction

Switch from CentOS/Rocky Linux to Oracle Linux

This script is designed to automatically switch a CentOS or Rocky Linux instance to Oracle Linux by removing any distribution-specific packages or replacing them with the Oracle Linux equivalent.

Supported versions and architectures

This script currently supports switching CentOS Linux 6, CentOS Linux 7, CentOS Linux 8, Rocky Linux 8 and Rocky Linux 9 on both x86_64 and aarch64 architectures. It does not support CentOS Stream.

Support for switching Rocky Linux should be considered experimental due to limited testing. Likewise, switching any of the operating systems mentioned above on aarch64 hosts should be considered experimental.

The script does not support switching from Rocky Linux images built for Raspberry Pi (aarch64).

Please ensure you have a complete working backup before attempting to switch and report any issues you encounter during the process.

Before you start

IMPORTANT: this script is a work-in-progress and is not designed to handle all possible configurations. Please ensure you have a complete working backup of the system before you start this process in the event the script is unable to convert the system successfully or unable to rollback the changes it made.

NOTE: CentOS 8 has reached end-of-life and its repos have moved to vault.centos.org. Please ensure that your CentOS 8 system is up-to-date and able to access those repos before you start.

Remove all non-standard kernels

Because of the GRUB2 BootHole vulnerability, our SecureBoot shim can only boot kernels signed by Oracle and we can only replace the default CentOS kernels. While this may not have an impact if SecureBoot is currently disabled, enabling it at a later date could render the system unbootable. For that reason, we strongly recommend removing all non-standard kernels, i.e. any kernel that is installed that is not provided by either the base or updates repo. This includes the centosplus kernels.

  1. Ensure your CentOS yum or dnf configuration is working, i.e. there are no stale repositories.
  2. Disable all non-CentOS repositories. You can re-enable the repos after the switch.
  3. Ensure you have at least 5GB of free space in /var/cache.
  4. All automatic updates, e.g. via yum-cron should be disabled.

Usage

  1. Login to your CentOS Linux 6, 7 or 8 or Rocky Linux 8 or 9 instance as a user who has sudo privileges.
  2. Either clone this repository or download the centos2ol.sh script.
  3. Run sudo bash centos2ol.sh to switch your CentOS instance to Oracle Linux.

Usage options

  • -r Reinstalls all CentOS RPMs with Oracle Linux RPMs

    If a system is switched to Oracle Linux and there is no newer Oracle Linux version of a package already installed then the CentOS version remains. This option proceeds to reinstall any CentOS RPM with an identical version from Oracle Linux. This is not necessary for support and has no impact to a systems functionality but is offered so a user can remove CentOS GPG keys from the truststore. A list of all non-Oracle RPMs will be displayed after the reinstall process.

  • -k Do not install the UEK kernel and disable UEK repos

    This option will not install the UEK kernel and will disable all UEK yum repositories.

  • -V Verify RPM information before and after the switch

    This option creates four output files in /var/tmp/:

    • ${hostname}-rpms-list-[before|after].log: a sorted list of installed packages before and after the switch to Oracle Linux.
    • ${hostname}-rpms-verified-[before|after].log: the RPM verification results for all installed packages before and after the switch to Oracle Linux.

Testing

See TESTING.md for instructions on the available tests and how to run them.

Known issues

  1. There is a reported issue with the upstream OpenJDK package resetting the alternatives configuration during a dnf reinstall transaction.

    We recommend recording the output of alternatives --list prior to running centos2ol.sh and reviewing the same output after switching. If you experience an issue with a package other than OpenJDK, please open an issue

Limitations

  1. The script currently needs to be able communicate with the CentOS/Rocky and Oracle Linux yum repositories either directly or via a proxy.
  2. The script currently does not support instances that are registered to a third-party management tool like Spacewalk, Foreman or Uyuni.
  3. Compatibility with packages installed from third-party repositories is expected but not guaranteed. Some software doesn't like the existence of an /etc/oracle-release file, for example.
  4. Packages that install third-party and/or closed-source kernel modules, e.g. commercial anti-virus products, may not work after switching.
  5. The script only enables the base repositories required to enable switching to Oracle Linux. Users may need to enable additional repositories to obtain updates for packages already installed (see issue #1.

Debugging

Run sudo bash -x centos2ol.sh to switch your CentOS instance to Oracle Linux in debug mode. This will print a trace of commands and their arguments or associated word lists after they are expanded but before they are executed.

Get involved

We welcome contributions! See our contribution guidelines.

Support

Resources

For more information on Oracle Linux, please visit oracle.com/linux.

Contributing

This project welcomes contributions from the community. Before submitting a pull request, please review our contribution guide

Security

Please consult the security guide for our responsible security vulnerability disclosure process

License

Copyright (c) 2020, 2023 Oracle and/or its affiliates.

Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/

centos2ol's People

Contributors

alexandraisabel avatar crramirez avatar djelibeybi avatar graham1228 avatar jsoref avatar kah0922 avatar lesiachaban avatar mark-au avatar michalgutowski avatar sadpencil avatar sbernacki avatar scoter-oracle avatar spavlusieva avatar totalamateurhour avatar wellhardh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

centos2ol's Issues

PowerTools reponame seems to be case sensitive

The declaration of the powertools repository in line 436 seems to be case sensitive. The reponame on my CentOS8 was powertools in lower case. After changing [PowerTools] to [powertools] the script worked like a charm.

restore_repos() is missing

App fails with following message:

./centos2ol.sh: line 369: restore_repos: command not found
An error occurred while attempting to switch this system to Oracle Linux and it may be in an unstable/unbootable state. To avoid further issues, the script has terminated.
[root@hfclab ~]#

Replace identical RPMs for completeness

When switching from a recently patched CentOS 6 or 7 the converter will leave CentOS built RPMs on the system if they match the Oracle Linux version. This causes no technical issue, when Oracle Linux releases new versions a system will be updated to it but we shouldn't leave the old distributions content in place. For completeness we should yum reinstall all CentOS RPMs with those from Oracle Linux.

This has not been seen on CentOS8.

Enhancement: provide options for rolling back an unsuccessful switch attempt

The previous restore_repos() function was well-intentioned, but wasn't updated to handle the new release RPMs, so it turned into more harm than good. It has now been removed.

However, it would be good if we always grabbed a list of RPMs installed before the script makes any changes so that in the event of a problem, we could at least tell the user what new RPMs were installed (so that they could be manually removed).

We should also take a backup of all repo definitions prior to starting so that they can be provided at this point.

Centos 7 upgrade errors out

The script errors out with a python dependency problem when trying to upgrade from Centos 7. The upgrade script was run after doing a yum update on the system and rebooting. yum distro-sync provides the same error output.

---> Package python.x86_64 0:2.7.5-90.el7 will be updated
--> Processing Dependency: python = 2.7.5-90.el7 for package: python-tools-2.7.5-90.el7.x86_64
--> Processing Dependency: python = 2.7.5-90.el7 for package: tkinter-2.7.5-90.el7.x86_64
--> Finished Dependency Resolution
Error: Package: python-tools-2.7.5-90.el7.x86_64 (@updates/7)
Requires: python = 2.7.5-90.el7
Removing: python-2.7.5-90.el7.x86_64 (@updates/7)
python = 2.7.5-90.el7
Updated By: python-2.7.5-90.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-90.0.1.el7
Available: python-2.7.5-68.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-68.0.1.el7
Available: python-2.7.5-69.0.1.el7_5.x86_64 (ol7_latest)
python = 2.7.5-69.0.1.el7_5
Available: python-2.7.5-76.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-76.0.1.el7
Available: python-2.7.5-77.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-77.0.1.el7_6
Available: python-2.7.5-79.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-79.0.1.el7_6
Available: python-2.7.5-80.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-80.0.1.el7_6
Available: python-2.7.5-86.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.1.el7
Available: python-2.7.5-86.0.3.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.3.el7
Available: python-2.7.5-88.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-88.0.1.el7
Available: python-2.7.5-89.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-89.0.1.el7
Error: Package: tkinter-2.7.5-90.el7.x86_64 (@updates/7)
Requires: python = 2.7.5-90.el7
Removing: python-2.7.5-90.el7.x86_64 (@updates/7)
python = 2.7.5-90.el7
Updated By: python-2.7.5-90.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-90.0.1.el7
Available: python-2.7.5-68.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-68.0.1.el7
Available: python-2.7.5-69.0.1.el7_5.x86_64 (ol7_latest)
python = 2.7.5-69.0.1.el7_5
Available: python-2.7.5-76.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-76.0.1.el7
Available: python-2.7.5-77.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-77.0.1.el7_6
Available: python-2.7.5-79.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-79.0.1.el7_6
Available: python-2.7.5-80.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-80.0.1.el7_6
Available: python-2.7.5-86.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.1.el7
Available: python-2.7.5-86.0.3.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.3.el7
Available: python-2.7.5-88.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-88.0.1.el7
Available: python-2.7.5-89.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-89.0.1.el7
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
Could not automatically sync with Oracle Linux repositories.
Check the output of 'yum distro-sync' to manually resolve the issue.
For assistance, please open an issue via GitHub: https://github.com/oracle/centos2ol/.

The packages with problems are:
Packages skipped because of dependency problems:
python-2.7.5-90.0.1.el7.x86_64 from ol7_latest
python-devel-2.7.5-90.0.1.el7.x86_64 from ol7_latest
python-libs-2.7.5-90.0.1.el7.x86_64 from ol7_latest
python-virtualenv-15.1.0-4.el7_8.noarch from ol7_latest

yum reinstall python python-devel python-libs
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile

  • epel: mirror.vcu.edu
    Installed package python-2.7.5-90.el7.x86_64 (from updates) not available.
    Installed package python-devel-2.7.5-90.el7.x86_64 (from updates) not available.
    Installed package python-libs-2.7.5-90.el7.x86_64 (from updates) not available.
    Error: Nothing to do

Unable to identify if a system is already Oracle Linux

The existing code attempts to identify Oracle Linux and prevent accidental execution if a system has already been converted.

centos2ol/centos2ol.sh

Lines 87 to 95 in 78a7d7b

case "${old_release}" in
redhat-release*) ;;
centos-release* | centos-linux-release*) ;;
sl-release*) ;;
oraclelinux-release*|enterprise-release*)
exit_message "You appear to be already running Oracle Linux."
;;
*) exit_message "You appear to be running an unsupported distribution." ;;
esac

This does not work as intended as oraclelinux-release*|enterprise-release* does not match:

$ for system in oraclelinux:6 oraclelinux:7 oraclelinux:8; do  echo ${system}; podman run -ti ${system} rpm -q --whatprovides redhat-release; echo "---"; done

oraclelinux:6
redhat-release-server-6Server-6.10.0.12.0.1.el6.x86_64
---
oraclelinux:7
redhat-release-server-7.9-3.0.1.el7.x86_64
---
oraclelinux:8
redhat-release-8.2-1.0.0.1.el8.x86_64
redhat-release-8.2-1.0.0.1.el8.x86_64
---

yum update error, need run sudo bash centos2ol.sh -r ?

Error: Package: abrt-retrace-client-2.1.11-60.el7.centos.x86_64 (@base/7)
Requires: abrt = 2.1.11-60.el7.centos
Removing: abrt-2.1.11-60.el7.centos.x86_64 (@base/7)
abrt = 2.1.11-60.el7.centos
Updated By: abrt-2.1.11-60.0.1.el7.x86_64 (ol7_latest)
abrt = 2.1.11-60.0.1.el7
Available: abrt-2.1.11-50.0.1.el7.x86_64 (ol7_latest)
abrt = 2.1.11-50.0.1.el7
Available: abrt-2.1.11-52.0.1.el7.x86_64 (ol7_latest)
abrt = 2.1.11-52.0.1.el7
Available: abrt-2.1.11-55.0.1.el7.x86_64 (ol7_latest)
abrt = 2.1.11-55.0.1.el7
Available: abrt-2.1.11-57.0.1.el7.x86_64 (ol7_latest)
abrt = 2.1.11-57.0.1.el7
Error: Package: python-tools-2.7.5-90.el7.x86_64 (@updates/7)
Requires: python = 2.7.5-90.el7
Removing: python-2.7.5-90.el7.x86_64 (@updates/7)
python = 2.7.5-90.el7
Updated By: python-2.7.5-90.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-90.0.1.el7
Available: python-2.7.5-68.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-68.0.1.el7
Available: python-2.7.5-69.0.1.el7_5.x86_64 (ol7_latest)
python = 2.7.5-69.0.1.el7_5
Available: python-2.7.5-76.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-76.0.1.el7
Available: python-2.7.5-77.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-77.0.1.el7_6
Available: python-2.7.5-79.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-79.0.1.el7_6
Available: python-2.7.5-80.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-80.0.1.el7_6
Available: python-2.7.5-86.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.1.el7
Available: python-2.7.5-86.0.3.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.3.el7
Available: python-2.7.5-88.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-88.0.1.el7
Available: python-2.7.5-89.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-89.0.1.el7
Error: Package: libreport-plugin-mantisbt-2.1.11-53.el7.centos.x86_64 (@base/7)
Requires: libreport = 2.1.11-53.el7.centos
Removing: libreport-2.1.11-53.el7.centos.x86_64 (@base/7)
libreport = 2.1.11-53.el7.centos
Updated By: libreport-2.1.11-53.0.1.el7.x86_64 (ol7_latest)
libreport = 2.1.11-53.0.1.el7
Available: libreport-2.1.11-40.0.1.el7.i686 (ol7_latest)
libreport = 2.1.11-40.0.1.el7
Available: libreport-2.1.11-42.0.1.el7.i686 (ol7_latest)
libreport = 2.1.11-42.0.1.el7
Available: libreport-2.1.11-43.0.1.el7.i686 (ol7_latest)
libreport = 2.1.11-43.0.1.el7
Error: Package: tkinter-2.7.5-90.el7.x86_64 (@updates/7)
Requires: python = 2.7.5-90.el7
Removing: python-2.7.5-90.el7.x86_64 (@updates/7)
python = 2.7.5-90.el7
Updated By: python-2.7.5-90.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-90.0.1.el7
Available: python-2.7.5-68.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-68.0.1.el7
Available: python-2.7.5-69.0.1.el7_5.x86_64 (ol7_latest)
python = 2.7.5-69.0.1.el7_5
Available: python-2.7.5-76.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-76.0.1.el7
Available: python-2.7.5-77.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-77.0.1.el7_6
Available: python-2.7.5-79.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-79.0.1.el7_6
Available: python-2.7.5-80.0.1.el7_6.x86_64 (ol7_latest)
python = 2.7.5-80.0.1.el7_6
Available: python-2.7.5-86.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.1.el7
Available: python-2.7.5-86.0.3.el7.x86_64 (ol7_latest)
python = 2.7.5-86.0.3.el7
Available: python-2.7.5-88.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-88.0.1.el7
Available: python-2.7.5-89.0.1.el7.x86_64 (ol7_latest)
python = 2.7.5-89.0.1.el7
Error: Package: libreport-centos-2.1.11-53.el7.centos.x86_64 (@base/7)
Requires: libreport-web = 2.1.11-53.el7.centos
Removing: libreport-web-2.1.11-53.el7.centos.x86_64 (@base/7)
libreport-web = 2.1.11-53.el7.centos
Updated By: libreport-web-2.1.11-53.0.1.el7.x86_64 (ol7_latest)
libreport-web = 2.1.11-53.0.1.el7
Available: libreport-web-2.1.11-40.0.1.el7.i686 (ol7_latest)
libreport-web = 2.1.11-40.0.1.el7
Available: libreport-web-2.1.11-42.0.1.el7.i686 (ol7_latest)
libreport-web = 2.1.11-42.0.1.el7
Available: libreport-web-2.1.11-43.0.1.el7.i686 (ol7_latest)
libreport-web = 2.1.11-43.0.1.el7
Error: Package: libreport-plugin-mantisbt-2.1.11-53.el7.centos.x86_64 (@base/7)
Requires: libreport-web = 2.1.11-53.el7.centos
Removing: libreport-web-2.1.11-53.el7.centos.x86_64 (@base/7)
libreport-web = 2.1.11-53.el7.centos
Updated By: libreport-web-2.1.11-53.0.1.el7.x86_64 (ol7_latest)
libreport-web = 2.1.11-53.0.1.el7
Available: libreport-web-2.1.11-40.0.1.el7.i686 (ol7_latest)
libreport-web = 2.1.11-40.0.1.el7
Available: libreport-web-2.1.11-42.0.1.el7.i686 (ol7_latest)
libreport-web = 2.1.11-42.0.1.el7
Available: libreport-web-2.1.11-43.0.1.el7.i686 (ol7_latest)
libreport-web = 2.1.11-43.0.1.el7
Error: Package: libreport-centos-2.1.11-53.el7.centos.x86_64 (@base/7)
Requires: libreport = 2.1.11-53.el7.centos
Removing: libreport-2.1.11-53.el7.centos.x86_64 (@base/7)
libreport = 2.1.11-53.el7.centos
Updated By: libreport-2.1.11-53.0.1.el7.x86_64 (ol7_latest)
libreport = 2.1.11-53.0.1.el7
Available: libreport-2.1.11-40.0.1.el7.i686 (ol7_latest)
libreport = 2.1.11-40.0.1.el7
Available: libreport-2.1.11-42.0.1.el7.i686 (ol7_latest)
libreport = 2.1.11-42.0.1.el7
Available: libreport-2.1.11-43.0.1.el7.i686 (ol7_latest)
libreport = 2.1.11-43.0.1.el7
Error: Package: libxml2-static-2.9.1-6.el7.5.x86_64 (@base/7)
Requires: libxml2 = 2.9.1-6.el7.5
Removing: libxml2-2.9.1-6.el7.5.x86_64 (@base/7)
libxml2 = 2.9.1-6.el7.5
Updated By: libxml2-2.9.1-6.0.1.el7.5.x86_64 (ol7_latest)
libxml2 = 2.9.1-6.0.1.el7.5
Available: libxml2-2.9.1-6.0.1.el7_2.3.i686 (ol7_latest)
libxml2 = 2.9.1-6.0.1.el7_2.3
Available: libxml2-2.9.1-6.0.1.el7.4.i686 (ol7_latest)
libxml2 = 2.9.1-6.0.1.el7.4

Centos 7.9 armv7hl failed

Hello,

i am trying to use the centos2ol script on all my current centos machines and i am facing the following issue on the arm machines:

+ set -e
+ unset CDPATH
+ yum_url=https://yum.oracle.com
+ github_url=https://github.com/oracle/centos2ol/
+ bad_packages=(centos-backgrounds centos-logos centos-release centos-release-cr desktop-backgrounds-basic centos-release-advanced-virtualization centos-release-ansible26 centos-release-ansible-27 centos-release-ansible-28 centos-release-ansible-29 centos-release-azure centos-release-ceph-jewel centos-release-ceph-luminous centos-release-ceph-nautilus centos-release-ceph-octopus centos-release-configmanagement centos-release-dotnet centos-release-fdio centos-release-gluster40 centos-release-gluster41 centos-release-gluster5 centos-release-gluster6 centos-release-gluster7 centos-release-gluster8 centos-release-gluster-legacy centos-release-messaging centos-release-nfs-ganesha28 centos-release-nfs-ganesha30 centos-release-nfv-common centos-release-nfv-openvswitch centos-release-openshift-origin centos-release-openstack-queens centos-release-openstack-rocky centos-release-openstack-stein centos-release-openstack-train centos-release-openstack-ussuri centos-release-opstools centos-release-ovirt42 centos-release-ovirt43 centos-release-ovirt44 centos-release-paas-common centos-release-qemu-ev centos-release-qpid-proton centos-release-rabbitmq-38 centos-release-samba411 centos-release-samba412 centos-release-scl centos-release-scl-rh centos-release-storage-common centos-release-virt-common centos-release-xen centos-release-xen-410 centos-release-xen-412 centos-release-xen-46 centos-release-xen-48 centos-release-xen-common libreport-centos libreport-plugin-mantisbt libreport-plugin-rhtsupport python3-syspurpose python-oauth sl-logos yum-rhn-plugin)
+ reinstall_all_rpms=false
+ verify_all_rpms=false
+ getopts hrV option
++ id -u
+ '[' 0 -ne 0 ']'
+ echo 'Checking for required packages...'
Checking for required packages...
+ for pkg in rpm yum curl
+ dep_check rpm
+ have_program rpm
+ hash rpm
+ for pkg in rpm yum curl
+ dep_check yum
+ have_program yum
+ hash yum
+ for pkg in rpm yum curl
+ dep_check curl
+ have_program curl
+ hash curl
+ echo 'Checking your distribution...'
Checking your distribution...
++ rpm -q --whatprovides /etc/redhat-release
+ old_release=centos-userland-release-7-9.2009.1.el7.centos.armv7hl
++ echo centos-userland-release-7-9.2009.1.el7.centos.armv7hl
++ wc -l
+ '[' 1 -ne 1 ']'
+ false
+ case "${old_release}" in
+ exit_message 'You appear to be running an unsupported distribution.'
+ echo 'You appear to be running an unsupported distribution.'
You appear to be running an unsupported distribution.
+ echo 'For assistance, please open an issue via GitHub: https://github.com/oracle/centos2ol/.'
For assistance, please open an issue via GitHub: https://github.com/oracle/centos2ol/.
+ exit 1

Thank you,
M

Enable additional repositories to match CentOS equivalent

The converter enables the minimum base Oracle Linux repositories. Users may be using additional CentOS repositories so we should automatically enable the Oracle Linux equivalent.

We should not automatically enable all Oracle Linux repositories, just the equivalent of those already enabled. This may take some research and testing e.g. CodeReady Builder vs PowerTools.

Issue with conversion after ssh session Dropped.

Hello,

I made a mistake and didn't kick off an additional screen and lost my ssh session right after I kicked off the centos2ol.sh script. I was on CentOS 7.7 and now my cat /etc/redhat-release shows Red Hat Enterprise Linux Server release 7.9 (Maipo). I am providing the following information per support's request.

[root@hermes yum.repos.d]# rpm -qa | grep release
redhat-release-server-7.9-3.0.1.el7.x86_64
elrepo-release-7.0-5.el7.elrepo.noarch
oraclelinux-release-7.9-1.0.9.el7.x86_64
epel-release-7-12.noarch
oraclelinux-release-el7-1.0-13.1.el7.x86_64

[root@hermes yum.repos.d]# cat /etc/os-release
NAME="Oracle Linux Server"
VERSION="7.9"
ID="ol"
ID_LIKE="fedora"
VARIANT="Server"
VARIANT_ID="server"
VERSION_ID="7.9"
PRETTY_NAME="Oracle Linux Server 7.9"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:oracle:linux:7:9:server"
HOME_URL="https://linux.oracle.com/"
BUG_REPORT_URL="https://bugzilla.oracle.com/"

ORACLE_BUGZILLA_PRODUCT="Oracle Linux 7"
ORACLE_BUGZILLA_PRODUCT_VERSION=7.9
ORACLE_SUPPORT_PRODUCT="Oracle Linux"
ORACLE_SUPPORT_PRODUCT_VERSION=7.9

a uname -a command gives me Linux hermes.localdomain 5.0.9-1.el7.elrepo.x86_64 #1 SMP Sat Apr 20 09:03:57 EDT 2019 x86_64 x86_64 x86_64 GNU/Linux

I don't seem to have any valid .repo files they've all been appended .disabled The switch-to-oraclelinux.repo file appears to be webcode and not a repo file.

Thank you for your help.

CentOS7. You appear to be already running Oracle Linux.

CentOS 7

wget https://raw.githubusercontent.com/oracle/centos2ol/main/centos2ol.sh
sudo bash centos2ol.sh -V
reboot
sudo bash centos2ol.sh -V

Checking for required packages...
Checking your distribution...
Creating a list of RPMs installed before the switch
Verifying RPMs installed before the switch against RPM database
You appear to be already running Oracle Linux.
For assistance, please open an issue via GitHub: https://github.com/oracle/centos2ol/.

cat /etc/*elease

Oracle Linux Server release 7.9
NAME="Oracle Linux Server"
VERSION="7.9"
ID="ol"
ID_LIKE="fedora"
VARIANT="Server"
VARIANT_ID="server"
VERSION_ID="7.9"
PRETTY_NAME="Oracle Linux Server 7.9"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:oracle:linux:7:9:server"
HOME_URL="https://linux.oracle.com/"
BUG_REPORT_URL="https://bugzilla.oracle.com/"

ORACLE_BUGZILLA_PRODUCT="Oracle Linux 7"
ORACLE_BUGZILLA_PRODUCT_VERSION=7.9
ORACLE_SUPPORT_PRODUCT="Oracle Linux"
ORACLE_SUPPORT_PRODUCT_VERSION=7.9
Red Hat Enterprise Linux Server release 7.9 (Maipo)
Oracle Linux Server release 7.9

yum clean all
Loaded plugins: fastestmirror, getpagespeed, langpacks
Cleaning repos: NemesidaWAF epel nginx-amplify nginx-stable ol7_UEKR6 ol7_latest packages-microsoft-com-mssql-server-2019 packages-microsoft-com-prod pgdg-common pgdg10 pgdg11 pgdg12 pgdg13 pgdg95 pgdg96
Cleaning up list of fastest mirrors
Other repos take up 414 M of disk space (use --verbose for details)

yum update -y

Loaded plugins: fastestmirror, getpagespeed, langpacks
Determining fastest mirrors
epel/x86_64/metalink | 33 kB 00:00:00

https://wiki.centos.org/yum-errors

If above article doesn't help to resolve this issue please use https://bugs.centos.org/.

One of the configured repositories failed (nginx stable repo),
and yum doesn't have enough cached data to continue. At this point the only
safe thing yum can do is fail. There are a few ways to work "fix" this:

 1. Contact the upstream for the repository and get them to fix the problem.

 2. Reconfigure the baseurl/etc. for the repository, to point to a working
    upstream. This is most often useful if you are using a newer
    distribution release than is supported by the repository (and the
    packages for the previous distribution release still work).

 3. Run the command with the repository temporarily disabled
        yum --disablerepo=nginx-stable ...

 4. Disable the repository permanently, so yum won't use it by default. Yum
    will then just ignore the repository until you permanently enable it
    again or use --enablerepo for temporary usage:

        yum-config-manager --disable nginx-stable
    or
        subscription-manager repos --disable=nginx-stable

 5. Configure the failing repository to be skipped, if it is unavailable.
    Note that yum will try to contact the repo. when it runs most commands,
    so will have to try and fail each time (and thus. yum will be be much
    slower). If it is a very temporary problem though, this is often a nice
    compromise:

        yum-config-manager --save --setopt=nginx-stable.skip_if_unavailable=true

failure: repodata/repomd.xml from nginx-stable: [Errno 256] No more mirrors to try.
http://nginx.org/packages/centos/$releasever/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found

nginx.repo - https://nginx.org/en/linux_packages.html#RHEL-CentOS

Problem: module rust-toolset:ol8:8030020200807201053:9de6951e-0.x86_64 requires module(llvm-toolset:ol8), but none of the providers can be installed

Hi,

On my laptop, I have installed CentOS 8.3 and due to their changing to OS Stream I just switched to Oracle Linux.
For an update, I have run the centos2ol.sh script and everything works as expected.
But later when I tried to check updates I found that there was an error on the packages (mainly 1 package).
Can you please provide a fix to get rid of the error?

`dnf [root@localhost ~]# dnf update
Last metadata expiration check: 0:01:35 ago on Sat 12 Dec 2020 04:33:25 PM PKT.
Modular dependency problem:

Problem: module rust-toolset:ol8:8030020200807201053:9de6951e-0.x86_64 requires module(llvm-toolset:ol8), but none of the providers can be installed

  • module llvm-toolset:ol8:20190604085604:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:20190604085604:9edba152-0.x86_64
  • module llvm-toolset:ol8:8000020190606151548:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8000020190606151548:9edba152-0.x86_64
  • module llvm-toolset:ol8:8010020190802085723:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8010020190802085723:9edba152-0.x86_64
  • module llvm-toolset:ol8:8020020200227200857:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8020020200227200857:9edba152-0.x86_64
  • module llvm-toolset:ol8:8020020200526230845:4cda2c84-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8020020200526230845:4cda2c84-0.x86_64
  • module llvm-toolset:ol8:8030020200820174250:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8030020200820174250:9edba152-0.x86_64
  • conflicting requests
    Dependencies resolved.
    Nothing to do.
    Complete!
    [root@localhost ~]#`

Where to see the list of conf file updates

Where can I see the list of files, for example, migration changes the file?

httpd -t
httpd: Syntax error on line 42 of /etc/httpd/conf/httpd.conf: Cannot load modules/mod_authz_default.so into server: /etc/httpd/modules/mod_authz_default.so: cannot open shared object file: No such file or directory

Report non-OracleLinux RPMs after conversion for sysadmin consideration

A conversion should not automatically remove non-Oracle RPMs but we should inform a user of the systems state.
As seen in #2 a user may have RPMs from CentOS and OracleLinux installed and the system operate normally.

In the real world it's natural for a system to hold RPMs from different vendors, for transparency we should inform the sysadmin what they are to highlight any bugs/edge cases in this tool.

This issue should not be addressed until after #2 to avoid information overload

Ensure the correct EFI boot entries are created after switching from CentOS to Oracle Linux

We are trying to migrate CentOS 8 systems to OL8.

The conversion script reports success, but it renders our systems unbootable: After the BIOS splash, we get several >> Checking media presence ..... messages on the terminal and then the system enters Dell BIOS recovery mode, which performs a memory test and then reports "No bootable devices found! ..."

Boot params are UEFI/Legacy Boot: OFF/Secure Boot: OFF.

I've isolated this issue to OL8 grub. Using a recovery stick, if I re-enable the CentOS BaseOS repo and install the latest version of grub2*, the system will boot to login with expected entries ("Oracle Linux" etc.) in the grub menu.

We're hesitant to proceed with migrations using this workaround because it requires us to continue using a potentially unsupported version of a fundamental component, not to mention we'll have to exclude grub in our dnf config to avoid bricking on dnf upgrades.

We use a stock grub configuration as far as I know.

/etc/default/grub:

GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=auto resume=/dev/mapper/VolGroup00-swap rd.lvm.lv=VolGroup00/root rd.lvm.lv=VolGroup00/swap rhgb quiet"
GRUB_DISABLE_RECOVERY="true"
GRUB_ENABLE_BLSCFG=true

/boot/grub2/grubenv:

# GRUB Environment Block
kernelopts=root=/dev/mapper/VolGroup00-root ro crashkernel=auto resume=/dev/mapper/VolGroup00-swap rd.lvm.lv=VolGroup00/root rd.lvm.lv=VolGroup00/swap rhgb quiet
boot_success=1
boot_indeterminate=0
######################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################

Kernel: 4.18.0-240.15.1.el8_3.x86_64
Bricking grub2*: 1:2.02-90.0.2.el8_3.1 from ol8_baseos_latest
Working grub2*: <= 1:2.02-90.el8_3.1 from BaseOS

I've yet to see a useful message from grub despite removing rhgb quiet. Please let me know what other info would help here.

Packages missing from repos

Hi guys,

So far we are considering Oracle Linux as a viable option to replace CentOS.
Presently we have two questions if you are able to assist:

  1. I don't think this centos2ol repo is the correct place for some Q&A, so is there any community forums, mailing list or sort where we can engage with other community members?
  2. We cannot find the fail2ban package in any repo for OL8. Maybe we're looking wrong, could you please confirm its availability?
    Thank you.

Problem: module rust-toolset:ol8:8030020200807201053:9de6951e-0.x86_64 requires module(llvm-toolset:ol8), but none of the providers can be installed

Problem: module rust-toolset:ol8:8030020200807201053:9de6951e-0.x86_64 requires module(llvm-toolset:ol8), but none of the providers can be installed

  • module llvm-toolset:ol8:20190604085604:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:20190604085604:9edba152-0.x86_64
  • module llvm-toolset:ol8:8000020190606151548:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8000020190606151548:9edba152-0.x86_64
  • module llvm-toolset:ol8:8010020190802085723:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8010020190802085723:9edba152-0.x86_64
  • module llvm-toolset:ol8:8020020200227200857:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8020020200227200857:9edba152-0.x86_64
  • module llvm-toolset:ol8:8020020200526230845:4cda2c84-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8020020200526230845:4cda2c84-0.x86_64
  • module llvm-toolset:ol8:8030020200820174250:9edba152-0.x86_64 conflicts with module(llvm-toolset:rhel8) provided by llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64
  • module llvm-toolset:rhel8:8030020201104035123:30b713e6-0.x86_64 conflicts with module(llvm-toolset:ol8) provided by llvm-toolset:ol8:8030020200820174250:9edba152-0.x86_64

Migrating IPA server without extra repos

Hi,

We have tested this script with IPA server replicas.
It appears to rollout correctly except when it reaches the following package:

oracle-logos-ipa which conflicts with centos-logos-ipa.
We retried by uninstalling centos-logos-ipa using rpm -e --nodeps ... and on the next run it failed with conflicts with centos-logos-httpd.

dnf module install virt

Azure CLI 8.3 MB/s | 18 MB 00:02
Docker CE Stable - x86_64 107 kB/s | 7.8 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 361 kB/s | 537 kB 00:01
Extra Packages for Enterprise Linux 8 - x86_64 3.2 MB/s | 8.8 MB 00:02
nginx stable repo 136 kB/s | 20 kB 00:00
Oracle Linux 8 BaseOS Latest (x86_64) 73 MB/s | 29 MB 00:00
Oracle Linux 8 Application Stream (x86_64) 59 MB/s | 22 MB 00:00
PostgreSQL common RPMs for RHEL/CentOS 8 - x86_64 988 kB/s | 534 kB 00:00
PostgreSQL 13 for RHEL/CentOS 8 - x86_64 445 kB/s | 218 kB 00:00
PostgreSQL 12 for RHEL/CentOS 8 - x86_64 796 kB/s | 410 kB 00:00
PostgreSQL 11 for RHEL/CentOS 8 - x86_64 1.0 MB/s | 606 kB 00:00
PostgreSQL 10 for RHEL/CentOS 8 - x86_64 850 kB/s | 422 kB 00:00
PostgreSQL 9.6 for RHEL/CentOS 8 - x86_64 811 kB/s | 429 kB 00:00
PostgreSQL 9.5 for RHEL/CentOS 8 - x86_64 654 kB/s | 365 kB 00:00
Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 8 (x86_64) 57 MB/s | 13 MB 00:00
Installing module 'virt:rhel' from Fail-Safe repository @modulefailsafe is not allowed
No default profiles for module virt:rhel. Available profiles: common
Error: Installing module from Fail-Safe repository is not allowed

oracle-epel-release-el8 is not a direct replacement for epel-release

While EPEL is not a BaseOS or AppStream official repo... the centos2ol script does "Replace EPEL configuration, if it exists".
After a quick review I found at least the netcdf package is not available in the Oracle hosted version.

Is the Oracle hosted version of EPEL suppose to be a a direct match or are missing packages expected?

Remove unnecessary argument value for -h option

Hi,

The -h option requires unnecessary value of argument because h: is used instead of h.

while getopts "h:r:V" option; do

  • Without value: Error message: ./centos2ol.sh: option requires an argument -- h
# ./centos2ol.sh -h
./centos2ol.sh: option requires an argument -- h
Usage: centos2ol.sh [OPTIONS]

OPTIONS
-h
        Display this help and exit
-r
        Reinstall all CentOS RPMs with Oracle Linux RPMs
        Note: This is not necessary for support
-V
        Verify RPM information before and after the switch
  • With value: OK
# ./centos2ol.sh -h dummy
Usage: centos2ol.sh [OPTIONS]

OPTIONS
-h
        Display this help and exit
-r
        Reinstall all CentOS RPMs with Oracle Linux RPMs
        Note: This is not necessary for support
-V
        Verify RPM information before and after the switch

CentOS HighAvailability and OL8_AddOns do not have the same content

In this line CentOS8-HighAvailability gets swapped to OL8_AddOns, but OL8_AddOns is missing a lot of the packages found in CentOS8-HighAvailability, e.g. corosync-qnetd and corosync-qdevice. If you are using any of those a switch won't be possible.

[HighAvailability]="REPO ol8_addons"

The above mentioned packages still existed in OL7 it seems. Is there another place to get them from for OL8?

Unexpected Token error ( during migration

Scripts say you are already using Oracle Linux even if the script fails during execution.
I got this script unexpected token ( at line 507 I tried to fix it but I failed to do it.

and also can we just validate the migration is successful based on /etc/oracle-release file because once this file generated migration is always successful even though it failed at the first attempt.
basically below script block is failing

if "${reinstall_all_rpms}"; then
    echo "Testing for remaining CentOS RPMs"
    # If CentOS and Oracle Linux have identically versioned RPMs then those RPMs are left unchanged.
    #  This should have no technical impact but for completeness, reinstall these RPMs
    #  so there is no accidental cross pollination.
    mapfile -t list_of_centos_rpms < <(rpm -qa --qf "%{NAME}-%{VERSION}-%{RELEASE} %{VENDOR}\n" | grep CentOS | awk '{print $1}')
    if [[ -n "${list_of_centos_rpms[*]}" ]]; then
        echo "Reinstalling RPMs: ${list_of_centos_rpms[*]}"
        yum --assumeyes --disablerepo "*" --enablerepo "ol*" reinstall "${list_of_centos_rpms[@]}"
    fi
    # See if non-Oracle RPMs are present and print them
    mapfile -t non_oracle_rpms < <(rpm -qa --qf "%{NAME}-%{VERSION}-%{RELEASE}|%{VENDOR}|%{PACKAGER}\n" |grep -v Oracle)
    if [[ -n "${non_oracle_rpms[*]}" ]]; then
        echo "The following non-Oracle RPMs are installed on the system:"
        printf '\t%s\n' "${non_oracle_rpms[@]}"
        echo "This may be expected of your environment and does not necessarily indicate a problem."
        echo "If a large number of CentOS RPMs are included and you're unsure why please open an issue on ${github_url}"
    fi
fi

cannot install the best update candidate for package python3-certbot-nginx-1.11.0-1.el8.noarch

#51
https://community.oracle.com/tech/apps-infra/discussion/4481295/dnf-update-python3-certbot-nginx-having-problems-updating

 dnf update
Azure CLI                                                                                                                                                                                                     10 MB/s |  19 MB     00:01
Docker CE Stable - x86_64                                                                                                                                                                                    141 kB/s |  10 kB     00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64                                                                                                                                                       456 kB/s | 550 kB     00:01
Extra Packages for Enterprise Linux 8 - x86_64                                                                                                                                                               2.6 MB/s | 8.9 MB     00:03
nginx stable repo                                                                                                                                                                                            172 kB/s |  21 kB     00:00
Oracle Linux 8 BaseOS Latest (x86_64)                                                                                                                                                                         71 MB/s |  31 MB     00:00
Oracle Linux 8 Application Stream (x86_64)                                                                                                                                                                    67 MB/s |  23 MB     00:00
PostgreSQL common RPMs for RHEL/CentOS 8 - x86_64                                                                                                                                                            862 kB/s | 536 kB     00:00
PostgreSQL 13 for RHEL/CentOS 8 - x86_64                                                                                                                                                                     432 kB/s | 258 kB     00:00
PostgreSQL 12 for RHEL/CentOS 8 - x86_64                                                                                                                                                                     713 kB/s | 450 kB     00:00
PostgreSQL 11 for RHEL/CentOS 8 - x86_64                                                                                                                                                                     942 kB/s | 647 kB     00:00
PostgreSQL 10 for RHEL/CentOS 8 - x86_64                                                                                                                                                                     756 kB/s | 442 kB     00:00
PostgreSQL 9.6 for RHEL/CentOS 8 - x86_64                                                                                                                                                                    775 kB/s | 449 kB     00:00
PostgreSQL 9.5 for RHEL/CentOS 8 - x86_64                                                                                                                                                                    649 kB/s | 384 kB     00:00
Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 8 (x86_64)                                                                                                                                    55 MB/s |  15 MB     00:00
Error:
 Problem: cannot install the best update candidate for package python3-certbot-nginx-1.11.0-1.el8.noarch
  - nothing provides python3.6dist(pyparsing) >= 2.2.0 needed by python3-certbot-nginx-1.12.0-1.el8.noarch
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)

multiple packages are providing redhat-release

I'm trying to covert centos 8 to oracle linux.
When execute centos2ol.sh, I got an error message.

Checking for required packages...
Checking your distribution...
Could not determine your distribution because multiple
packages are providing redhat-release:
centos-linux-release-8.3-1.2011.el8.noarch
redhat-release-8.3-1.0.0.1.el8.x86_64
redhat-release-8.3-1.0.0.1.el8.x86_64

What's that?

IPA

We have most of our servers on CentOS Linux.
Some have Red Hat derived applications like FreeIPA (IDM) or OKD (OpenShift).

We made an clean install of Oracle Linux and looked for ipa-server packages. They are non-existing.

The availability of applications that are freely distributed by competitors (fedora epel, Debian, Ubuntu etc) is mandatory for Oracle Linux to be an option.

Please advise.

UEKR6 repo metadata not found for AArch64 target

Even with a -k flag, the script tries to fetch repo metadata for ol8_UEKR6, which failes for AArch64 targets.

$  ./centos2ol.sh -k -V
<...snip...>
Errors during downloading metadata for repository 'ol8_UEKR6':
  - Status code: 404 for https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/aarch64/repodata/repomd.xml (IP: 23.38.85.86)
Error: Failed to download metadata for repo 'ol8_UEKR6': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried

https://yum.oracle.com/oracle-linux-8.html suggests that there is only an x86 build of the ol8_UEKR6 repository available, and sure enough:

$ curl -I  https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/repodata/repomd.xml
HTTP/1.1 200 OK
$ curl -I  https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/aarch64/repodata/repomd.xml
HTTP/1.1 404 Not Found

I'd guess that this wants to be conditionally enabled based on basearch:

		[ol8_UEKR6]
		name=Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux $releasever ($basearch)
		baseurl=https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/$basearch/
		gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
		gpgcheck=1
		enabled=1

Though that would cause this later logic to fail as yum-config-manager won't know anything by the name of UEK to disable them.

# Disable UEK repos if UEK kernel is not being installed
if ! "${install_uek_kernel}"; then
  echo "Disabling UEK repositories since we are not installing the UEK kernel"
  yum-config-manager --disable \*UEK*
fi

So probably the logic needs a more detailed overhaul for missing ol8_UEKR6 builds for AArch64.

convert offline

I want you to be able to convert offline using oracle linux iso.

Remove yum/dnf cache of untracked repos

The script should remove the cache of untracked repos

# yum clean all --verbose  --enablerepo \*
Config time: 0.004
Yum version: 3.4.3
Cleaning repos: centos-sclo-rh centos-sclo-rh-debuginfo centos-sclo-rh-source centos-sclo-rh-testing centos-sclo-sclo centos-sclo-sclo-debuginfo centos-sclo-sclo-source centos-sclo-sclo-testing ol7_MODRHCK ol7_UEKR3 ol7_UEKR3_OFED20 ol7_UEKR4 ol7_UEKR4_OFED ol7_UEKR4_archive
              : ol7_UEKR5 ol7_UEKR5_RDMA ol7_UEKR5_archive ol7_UEKR6 ol7_UEKR6_RDMA ol7_addons ol7_kvm_utils ol7_latest ol7_latest_archive ol7_optional_archive ol7_optional_latest ol7_security_validation ol7_software_collections ol7_u0_base ol7_u1_base ol7_u2_base ol7_u3_base
              : ol7_u4_base ol7_u5_base ol7_u6_base ol7_u7_base ol7_u8_base ol7_u9_base
Operating on /var/cache/yum/x86_64/7Server (see CLEAN OPTIONS in yum(8) for details)
Disk usage under /var/cache/yum/*/* after cleanup:
680 M  enabled repos:
  214 M  /var/cache/yum/x86_64/7/ol7_latest
  214 M  /var/cache/yum/x86_64/$releasever/ol7_latest
  50 M   /var/cache/yum/x86_64/$releasever/ol7_UEKR6
  46 M   /var/cache/yum/x86_64/7/ol7_UEKR5
  40 M   /var/cache/yum/x86_64/$releasever/ol7_software_collections
  36 M   /var/cache/yum/x86_64/$releasever/ol7_u9_base
  22 M   /var/cache/yum/x86_64/7/centos-sclo-rh-testing
  20 M   /var/cache/yum/x86_64/7/centos-sclo-rh
  20 M   /var/cache/yum/x86_64/$releasever/centos-sclo-rh
  5.6 M  /var/cache/yum/x86_64/7/centos-sclo-rh-debuginfo
  5.6 M  /var/cache/yum/x86_64/7/centos-sclo-sclo-debuginfo
  1.9 M  /var/cache/yum/x86_64/7/centos-sclo-sclo-testing
  1.8 M  /var/cache/yum/x86_64/7/centos-sclo-sclo
  1.8 M  /var/cache/yum/x86_64/$releasever/centos-sclo-sclo
  764 k  /var/cache/yum/x86_64/7/centos-sclo-sclo-source
0      disabled repos
573 M  untracked repos:
  56 M   /var/cache/yum/x86_64/7/C7.2.1511-updates
  49 M   /var/cache/yum/x86_64/7/C7.3.1611-updates
  44 M   /var/cache/yum/x86_64/7/C7.4.1708-updates
  41 M   /var/cache/yum/x86_64/7/C7.0.1406-updates
  36 M   /var/cache/yum/x86_64/7/base
  34 M   /var/cache/yum/x86_64/7/C7.4.1708-base
  33 M   /var/cache/yum/x86_64/7/C7.3.1611-base
  31 M   /var/cache/yum/x86_64/7/C7.2.1511-base
  30 M   /var/cache/yum/x86_64/7/C7.1.1503-base
  29 M   /var/cache/yum/x86_64/7/C7.1.1503-updates
  29 M   /var/cache/yum/x86_64/7/C7.0.1406-base
  26 M   /var/cache/yum/x86_64/7/base-debuginfo
  24 M   /var/cache/yum/x86_64/7/C7.2.1511-centosplus
  22 M   /var/cache/yum/x86_64/7/updates
  20 M   /var/cache/yum/x86_64/7/C7.0.1406-centosplus
  18 M   /var/cache/yum/x86_64/7/C7.3.1611-centosplus
  18 M   /var/cache/yum/x86_64/7/C7.4.1708-centosplus
  13 M   /var/cache/yum/x86_64/7/C7.1.1503-centosplus
  8.7 M  /var/cache/yum/x86_64/7/centosplus
  4.9 M  /var/cache/yum/x86_64/7/base-source
  1.3 M  /var/cache/yum/x86_64/7/extras
  1.2 M  /var/cache/yum/x86_64/7/C7.3.1611-extras
  1.1 M  /var/cache/yum/x86_64/7/C7.4.1708-extras
  1.0 M  /var/cache/yum/x86_64/7/C7.2.1511-extras
  744 k  /var/cache/yum/x86_64/7/C7.0.1406-fasttrack
  708 k  /var/cache/yum/x86_64/7/C7.1.1503-extras
  384 k  /var/cache/yum/x86_64/7/C7.1.1503-fasttrack
  308 k  /var/cache/yum/x86_64/7/updates-source
  256 k  /var/cache/yum/x86_64/7/C7.0.1406-extras
  216 k  /var/cache/yum/x86_64/7/fasttrack
  156 k  /var/cache/yum/x86_64/7/extras-source
  52 k   /var/cache/yum/x86_64/7/centosplus-source
  36 k   /var/cache/yum/x86_64/7/cr
  32 k   /var/cache/yum/x86_64/7/C7.2.1511-fasttrack
  32 k   /var/cache/yum/x86_64/7/C7.3.1611-fasttrack
  32 k   /var/cache/yum/x86_64/7/C7.4.1708-fasttrack
20 k   other data:
  4.0 k  /var/cache/yum/x86_64/7/timedhosts.txt
  4.0 k  /var/cache/yum/x86_64/7/timedhosts
  4.0 k  /var/cache/yum/x86_64/$releasever/timedhosts.txt
  4.0 k  /var/cache/yum/x86_64/$releasever/timedhosts
  4.0 k  /var/cache/yum/x86_64/7Server/timedhosts
1.2 G  total

bring back subscription-manager

It would be really, really nice if subscription-manager could be re-added to Oracle Linux 8, so organisations using Foreman/Katello could (easily) make the switch.

Option -r is not recognised and the script errors out if used

Hi,
When running the script with the -r option, it currently errors out with:
option requires an argument

According to the usage section -r is a switch and should not require an argument. Looking at the script, the line with getopts:
while getopts "hr:V" option; do
has a colon, which would signify an argument is required, hence the error. This line should be:
while getopts "hrV" option; do

Thanks,
Serge

CentOS 8.3 to Oracle Linux failed conversion on OpenVZ 7 VPS

On OpenVZ 7 VPS, the centos2ol.sh script will fail with below output for dracut: Cannot find module directory /lib/modules/4.18.0/

virt-what
openvz
lxc
bash centos2ol.sh | tee centos2ol.log
Checking for required packages...
Checking your distribution...
Checking for yum lock...
Checking for required python packages...
Finding your repository directory...
Looking for yumdownloader...
Backing up and removing old repository files...
Downloading Oracle Linux release package...
Oracle Linux 8 BaseOS Latest (x86_64)            35 MB/s |  27 MB     00:00    
Oracle Linux 8 Application Stream (x86_64)       32 MB/s |  21 MB     00:00    
Latest Unbreakable Enterprise Kernel Release 6   22 MB/s |  11 MB     00:00    
Last metadata expiration check: 0:00:02 ago on Sat Dec 12 06:41:14 2020.
(1/3): oraclelinux-release-el8-1.0-14.el8.x86_6 185 kB/s |  18 kB     00:00    
(2/3): redhat-release-8.3-1.0.0.1.el8.x86_64.rp 167 kB/s |  17 kB     00:00    
(3/3): oraclelinux-release-8.3-1.0.4.el8.x86_64 513 kB/s |  71 kB     00:00    
Switching old release package with Oracle Linux...
warning: oraclelinux-release-8.3-1.0.4.el8.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ad986da3: NOKEY
warning: file /etc/yum.repos.d/CentOS-Linux-Sources.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-PowerTools.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-Plus.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-Media.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-HighAvailability.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-FastTrack.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-Extras.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-Devel.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-Debuginfo.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-ContinuousRelease.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-BaseOS.repo: remove failed: No such file or directory
warning: file /etc/yum.repos.d/CentOS-Linux-AppStream.repo: remove failed: No such file or directory
Installing base packages for Oracle Linux...
Last metadata expiration check: 0:00:06 ago on Sat Dec 12 06:41:14 2020.
> No match for argument: centos-backgrounds
No match for argument: centos-logos
No match for argument: centos-release-cr
No match for argument: desktop-backgrounds-basic
No match for argument: libreport-centos
No match for argument: libreport-plugin-mantisbt
No match for argument: libreport-plugin-rhtsupport
No match for argument: python3-syspurpose
No match for argument: python-oauth
No match for argument: sl-logos
No match for argument: yum-rhn-plugin
> Package basesystem-11-5.el8.noarch is already installed.
Package initscripts-10.00.9-1.el8.x86_64 is already installed.
Package grubby-8.40-41.el8.x86_64 is already installed.
> ===========================================================================================
 Package                Arch    Version                            Repository          Size
===========================================================================================
Installing:
 grub2-pc               x86_64  1:2.02-90.0.1.el8                  ol8_baseos_latest   40 k
 kernel-uek             x86_64  5.4.17-2036.100.6.1.el8uek         ol8_UEKR6           61 M
 oracle-logos           x86_64  80.5-1.0.6.el8                     ol8_baseos_latest  1.4 M
 plymouth               x86_64  0.9.4-7.20200615git1e36e30.0.1.el8 ol8_appstream      127 k
Upgrading:
 grub2-common           noarch  1:2.02-90.0.1.el8                  ol8_baseos_latest  885 k
 grub2-tools            x86_64  1:2.02-90.0.1.el8                  ol8_baseos_latest  2.0 M
 grub2-tools-minimal    x86_64  1:2.02-90.0.1.el8                  ol8_baseos_latest  205 k
 grubby                 x86_64  8.40-41.0.1.el8                    ol8_baseos_latest   50 k
Installing dependencies:
 freetype               x86_64  2.9.1-4.el8_3.1                    ol8_baseos_latest  394 k
 grub2-pc-modules       noarch  1:2.02-90.0.1.el8                  ol8_baseos_latest  869 k
 grub2-tools-efi        x86_64  1:2.02-90.0.1.el8                  ol8_baseos_latest  470 k
 grub2-tools-extra      x86_64  1:2.02-90.0.1.el8                  ol8_baseos_latest  1.1 M
 libpng                 x86_64  2:1.6.34-5.el8                     ol8_baseos_latest  126 k
 linux-firmware         noarch  999:20200902-999.5.gitd5f9eea5.el8 ol8_baseos_latest  122 M
 numactl-libs           x86_64  2.0.12-11.el8                      ol8_baseos_latest   36 k
 plymouth-core-libs     x86_64  0.9.4-7.20200615git1e36e30.0.1.el8 ol8_appstream      122 k
 plymouth-scripts       x86_64  0.9.4-7.20200615git1e36e30.0.1.el8 ol8_appstream       44 k
Removing:
 centos-linux-release   noarch  8.3-1.2011.el8                     @BaseOS             25 k

Transaction Summary
===========================================================================================
Install  13 Packages
Upgrade   4 Packages
Remove    1 Package

Total download size: 191 M
Downloading Packages:
(1/17): libpng-1.6.34-5.el8.x86_64.rpm          689 kB/s | 126 kB     00:00    
(2/17): grub2-pc-2.02-90.0.1.el8.x86_64.rpm     1.2 MB/s |  40 kB     00:00    
(3/17): oracle-logos-80.5-1.0.6.el8.x86_64.rpm  5.2 MB/s | 1.4 MB     00:00    
(4/17): numactl-libs-2.0.12-11.el8.x86_64.rpm   1.3 MB/s |  36 kB     00:00    
(5/17): grub2-tools-efi-2.02-90.0.1.el8.x86_64. 6.2 MB/s | 470 kB     00:00    
(6/17): grub2-tools-extra-2.02-90.0.1.el8.x86_6 6.1 MB/s | 1.1 MB     00:00    
(7/17): grub2-pc-modules-2.02-90.0.1.el8.noarch 8.6 MB/s | 869 kB     00:00    
(8/17): plymouth-scripts-0.9.4-7.20200615git1e3 1.5 MB/s |  44 kB     00:00    
(9/17): plymouth-0.9.4-7.20200615git1e36e30.0.1 4.4 MB/s | 127 kB     00:00    
(10/17): freetype-2.9.1-4.el8_3.1.x86_64.rpm    2.5 MB/s | 394 kB     00:00    
(11/17): plymouth-core-libs-0.9.4-7.20200615git 4.1 MB/s | 122 kB     00:00    
(12/17): grubby-8.40-41.0.1.el8.x86_64.rpm      1.8 MB/s |  50 kB     00:00    
(13/17): grub2-common-2.02-90.0.1.el8.noarch.rp 4.2 MB/s | 885 kB     00:00    
(14/17): grub2-tools-2.02-90.0.1.el8.x86_64.rpm  15 MB/s | 2.0 MB     00:00    
(15/17): grub2-tools-minimal-2.02-90.0.1.el8.x8 2.3 MB/s | 205 kB     00:00    
(16/17): kernel-uek-5.4.17-2036.100.6.1.el8uek.  41 MB/s |  61 MB     00:01    
(17/17): linux-firmware-20200902-999.5.gitd5f9e  43 MB/s | 122 MB     00:02    
--------------------------------------------------------------------------------
Total                                            67 MB/s | 191 MB     00:02     
warning: /var/cache/dnf/ol8_baseos_latest-e4c6155830ad002c/packages/libpng-1.6.34-5.el8.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ad986da3: NOKEY
Oracle Linux 8 BaseOS Latest (x86_64)           3.0 MB/s | 3.1 kB     00:00    
Importing GPG key 0xAD986DA3:
 Userid     : "Oracle OSS group (Open Source Software group) <[email protected]>"
 Fingerprint: 76FD 3DB1 3AB6 7410 B89D B10E 8256 2EA9 AD98 6DA3
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Running scriptlet: grub2-common-1:2.02-90.0.1.el8.noarch                  1/1 
  Upgrading        : grub2-common-1:2.02-90.0.1.el8.noarch                 1/22 
  Upgrading        : grub2-tools-minimal-1:2.02-90.0.1.el8.x86_64          2/22 
  Running scriptlet: grub2-tools-1:2.02-90.0.1.el8.x86_64                  3/22 
  Upgrading        : grub2-tools-1:2.02-90.0.1.el8.x86_64                  3/22 
  Running scriptlet: grub2-tools-1:2.02-90.0.1.el8.x86_64                  3/22 
  Installing       : grub2-pc-modules-1:2.02-90.0.1.el8.noarch             4/22 
  Installing       : plymouth-core-libs-0.9.4-7.20200615git1e36e30.0.1.    5/22 
  Running scriptlet: plymouth-core-libs-0.9.4-7.20200615git1e36e30.0.1.    5/22 
  Installing       : plymouth-scripts-0.9.4-7.20200615git1e36e30.0.1.el    6/22 
  Installing       : plymouth-0.9.4-7.20200615git1e36e30.0.1.el8.x86_64    7/22 
  Installing       : numactl-libs-2.0.12-11.el8.x86_64                     8/22 
  Running scriptlet: numactl-libs-2.0.12-11.el8.x86_64                     8/22 
  Installing       : linux-firmware-999:20200902-999.5.gitd5f9eea5.el8.    9/22 
  Installing       : libpng-2:1.6.34-5.el8.x86_64                         10/22 
  Installing       : freetype-2.9.1-4.el8_3.1.x86_64                      11/22 
  Installing       : grub2-tools-extra-1:2.02-90.0.1.el8.x86_64           12/22 
  Installing       : grub2-pc-1:2.02-90.0.1.el8.x86_64                    13/22 
  Running scriptlet: kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64         14/22 
  Installing       : kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64         14/22 
  Running scriptlet: kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64         14/22 
  Upgrading        : grubby-8.40-41.0.1.el8.x86_64                        15/22 
  Installing       : grub2-tools-efi-1:2.02-90.0.1.el8.x86_64             16/22 
  Installing       : oracle-logos-80.5-1.0.6.el8.x86_64                   17/22 
  Running scriptlet: oracle-logos-80.5-1.0.6.el8.x86_64                   17/22 
  Cleanup          : grubby-8.40-41.el8.x86_64                            18/22 
  Erasing          : centos-linux-release-8.3-1.2011.el8.noarch           19/22 
  Running scriptlet: grub2-tools-1:2.02-90.el8.x86_64                     20/22 
  Cleanup          : grub2-tools-1:2.02-90.el8.x86_64                     20/22 
  Cleanup          : grub2-tools-minimal-1:2.02-90.el8.x86_64             21/22 
  Cleanup          : grub2-common-1:2.02-90.el8.noarch                    22/22 
  Running scriptlet: kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64         22/22 
  Running scriptlet: oracle-logos-80.5-1.0.6.el8.x86_64                   22/22 
  Running scriptlet: grub2-common-1:2.02-90.el8.noarch                    22/22 
  Verifying        : libpng-2:1.6.34-5.el8.x86_64                          1/22 
  Verifying        : oracle-logos-80.5-1.0.6.el8.x86_64                    2/22 
  Verifying        : linux-firmware-999:20200902-999.5.gitd5f9eea5.el8.    3/22 
  Verifying        : grub2-pc-1:2.02-90.0.1.el8.x86_64                     4/22 
  Verifying        : grub2-tools-extra-1:2.02-90.0.1.el8.x86_64            5/22 
  Verifying        : numactl-libs-2.0.12-11.el8.x86_64                     6/22 
  Verifying        : grub2-tools-efi-1:2.02-90.0.1.el8.x86_64              7/22 
  Verifying        : grub2-pc-modules-1:2.02-90.0.1.el8.noarch             8/22 
  Verifying        : freetype-2.9.1-4.el8_3.1.x86_64                       9/22 
  Verifying        : plymouth-scripts-0.9.4-7.20200615git1e36e30.0.1.el   10/22 
  Verifying        : plymouth-0.9.4-7.20200615git1e36e30.0.1.el8.x86_64   11/22 
  Verifying        : plymouth-core-libs-0.9.4-7.20200615git1e36e30.0.1.   12/22 
  Verifying        : kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64         13/22 
  Verifying        : grubby-8.40-41.0.1.el8.x86_64                        14/22 
  Verifying        : grubby-8.40-41.el8.x86_64                            15/22 
  Verifying        : grub2-common-1:2.02-90.0.1.el8.noarch                16/22 
  Verifying        : grub2-common-1:2.02-90.el8.noarch                    17/22 
  Verifying        : grub2-tools-1:2.02-90.0.1.el8.x86_64                 18/22 
  Verifying        : grub2-tools-1:2.02-90.el8.x86_64                     19/22 
  Verifying        : grub2-tools-minimal-1:2.02-90.0.1.el8.x86_64         20/22 
  Verifying        : grub2-tools-minimal-1:2.02-90.el8.x86_64             21/22 
  Verifying        : centos-linux-release-8.3-1.2011.el8.noarch           22/22 

Upgraded:
  grub2-common-1:2.02-90.0.1.el8.noarch                                         
  grub2-tools-1:2.02-90.0.1.el8.x86_64                                          
  grub2-tools-minimal-1:2.02-90.0.1.el8.x86_64                                  
  grubby-8.40-41.0.1.el8.x86_64                                                 

Installed:
  freetype-2.9.1-4.el8_3.1.x86_64                                               
  grub2-pc-1:2.02-90.0.1.el8.x86_64                                             
  grub2-pc-modules-1:2.02-90.0.1.el8.noarch                                     
  grub2-tools-efi-1:2.02-90.0.1.el8.x86_64                                      
  grub2-tools-extra-1:2.02-90.0.1.el8.x86_64                                    
  kernel-uek-5.4.17-2036.100.6.1.el8uek.x86_64                                  
  libpng-2:1.6.34-5.el8.x86_64                                                  
  linux-firmware-999:20200902-999.5.gitd5f9eea5.el8.noarch                      
  numactl-libs-2.0.12-11.el8.x86_64                                             
  oracle-logos-80.5-1.0.6.el8.x86_64                                            
  plymouth-0.9.4-7.20200615git1e36e30.0.1.el8.x86_64                            
  plymouth-core-libs-0.9.4-7.20200615git1e36e30.0.1.el8.x86_64                  
  plymouth-scripts-0.9.4-7.20200615git1e36e30.0.1.el8.x86_64                    

Removed:
  centos-linux-release-8.3-1.2011.el8.noarch                                    

Complete!
Last metadata expiration check: 0:00:51 ago on Sat Dec 12 06:41:14 2020.
> Leaving Shell
The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'yum clean packages'.
Updating initrd...
dracut: Cannot find module directory /lib/modules/4.18.0/
dracut: and --no-kernel was not specified

Do not install the UEK kernel by default

Can we provide an option to not auto install the uek kernel? I have use cases where I need to convert a CentOS AMI to a RHCK Oracle Linux AMI and do not want the kernel-uek package used or installed.
As part of that please do not include the UEK repo channels by default either if not installing the UEK kernel.

An attempt to re-run the script after an initial error was fixed leads to mass deletion of RPMs and unbootable system

Looks like the problem is with the procedure restore_repos which is called on error as an exception handler and behaves incorrectly if the script is rerun:

restore_repos() {
    yum remove -y "${new_releases[@]}"
    find . -name 'repo.*' | while read -r repo; do
        destination=$(head -n1 "$repo")
        if [ "${destination}" ]; then
            tail -n+2 "${repo}" > "${destination}"
        fi
    done
    rm "${reposdir}/${repo_file}"
    exit_message "Could not install Oracle Linux packages.
Your repositories have been restored to your previous configuration."
}

If a naive user after correcting the initial error tries to rerun the script, the command yum remove -y "${new_releases[@]}" picks up dependencies and deletes over 300 RPMs in case of CentOS6 conversion. The version on which I tried this script.

Downloading Oracle Linux yum repository file...
+ curl -o switch-to-oraclelinux.repo https://yum.oracle.com/public-yum-ol6.repo
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0100 12045  100 12045    0     0  58382      0 --:--:-- --:--:-- --:--:-- 64758
+ echo 'Looking for yumdownloader...'
Looking for yumdownloader...
+ have_program yumdownloader
+ hash yumdownloader
++ mktemp -d
+ cd /tmp/tmp.2RROI1ZzMG
+ trap restore_repos ERR
+ [[ redhat-release-server-6Server-6.10.0.12.0.1.el6.x86_64 =~ ^centos-release-8.* ]]
+ [[ redhat-release-server-6Server-6.10.0.12.0.1.el6.x86_64 =~ ^centos-linux-release-8.* ]]
+ echo 'Backing up and removing old repository files...'
Backing up and removing old repository files...
+ rpm -ql redhat-release-server-6Server-6.10.0.12.0.1.el6.x86_64
+ grep '\.repo$'
++ restore_repos
++ yum remove -y oraclelinux-release oraclelinux-release-el6 redhat-release-server
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
Resolving Dependencies
--> Running transaction check
---> Package oraclelinux-release.x86_64 6:6Server-10.0.2 will be erased
---> Package oraclelinux-release-el6.noarch 0:1.0-7.el6 will be erased
---> Package redhat-release-server.x86_64 1:6Server-6.10.0.12.0.1.el6 will be erased
--> Processing Dependency: redhat-release >= 6 for package: epel-release-6-8.noarch
--> Running transaction check
---> Package epel-release.noarch 0:6-8 will be erased
--> Processing Dependency: /etc/system-release for package: initscripts-9.03.58-1.el6.centos.2.x86_64
--> Restarting Dependency Resolution with new changes.
--> Running transaction check
---> Package initscripts.x86_64 0:9.03.58-1.el6.centos.2 will be erased
--> Processing Dependency: initscripts for package: 1:quota-3.17-23.el6.x86_64

Probably identical behavior will be observed in CentOS7. The error is reproducible -- you need to fill /root so the script fails on attempt to install kernel and then run the script again.

There are two issues here. One is the absence of the check for the presence of oracle repos in yum.repos.d and the second misguided attempt to restore the system (as in "road to hell is paved with good intentions"). Unless the script is enhanced I would recommend to disable this procedure completely as it does no good. If the person wants to return to square one the backup is the way to go as the condition of the server at this point can be pretty different from what this procedure expects. The most common scenario is that the user wants to proceed with the conversion, not to return to the square one.

Here is how this SNAFU happened in one of my test runs:

Checking for required packages...
Checking your distribution...
Checking for yum lock...
Checking for required python packages...
Finding your repository directory...
Learning which repositories are enabled...
Repositories enabled before update include:
ol6_UEKR4
ol6_latest
Downloading Oracle Linux yum repository file...
Looking for yumdownloader...
Backing up and removing old repository files...
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
Resolving Dependencies
--> Running transaction check
---> Package oraclelinux-release.x86_64 6:6Server-10.0.2 will be erased
---> Package oraclelinux-release-el6.noarch 0:1.0-7.el6 will be erased
---> Package redhat-release-server.x86_64 1:6Server-6.10.0.12.0.1.el6 will be erased
--> Processing Dependency: redhat-release >= 6 for package: epel-release-6-8.noarch
--> Running transaction check
---> Package epel-release.noarch 0:6-8 will be erased
--> Processing Dependency: /etc/system-release for package: initscripts-9.03.61-1.0.6.el6.x86_64
--> Processing Dependency: /etc/oracle-release for package: initscripts-9.03.61-1.0.6.el6.x86_64
--> Restarting Dependency Resolution with new changes.
--> Running transaction check
---> Package initscripts.x86_64 0:9.03.61-1.0.6.el6 will be erased
--> Processing Dependency: initscripts for package: docker-io-1.7.1-2.el6.x86_64
--> Processing Dependency: initscripts for package: 1:quota-3.17-23.el6.x86_64
--> Processing Dependency: initscripts >= 6.38 for package: 1:quota-3.17-23.el6.x86_64
--> Processing Dependency: initscripts >= 8.63-1 for package: dracut-004-409.el6_8.2.noarch
--> Processing Dependency: initscripts >= 5.99 for package: system-config-network-tui-1.6.0.el6.3-4.el6.noarch
--> Processing Dependency: initscripts for package: postgresql-8.4.20-6.el6.x86_64
--> Processing Dependency: initscripts for package: postgresql-8.4.20-6.el6.x86_64
--> Processing Dependency: initscripts for package: at-3.1.10-48.el6.x86_64
--> Processing Dependency: initscripts for package: at-3.1.10-48.el6.x86_64
--> Processing Dependency: initscripts for package: at-3.1.10-48.el6.x86_64
--> Processing Dependency: initscripts for package: radvd-1.6-1.el6.x86_64
--> Processing Dependency: initscripts for package: radvd-1.6-1.el6.x86_64
--> Processing Dependency: initscripts >= 5.20 for package: openssh-5.3p1-118.1.el6_8.x86_64
--> Processing Dependency: initscripts >= 8.04-1 for package: hal-0.5.14-14.el6.x86_64
--> Processing Dependency: initscripts for package: foomatic-4.0.4-5.el6_7.x86_64
--> Processing Dependency: initscripts for package: rng-tools-5-2.el6_7.x86_64
--> Processing Dependency: initscripts for package: spice-vdagent-0.14.0-11.el6.x86_64
--> Processing Dependency: initscripts for package: spice-vdagent-0.14.0-11.el6.x86_64
--> Processing Dependency: initscripts for package: sssd-common-1.13.3-22.el6.x86_64
--> Processing Dependency: initscripts for package: sssd-common-1.13.3-22.el6.x86_64
--> Processing Dependency: initscripts for package: sssd-common-1.13.3-22.el6.x86_64
--> Processing Dependency: initscripts >= 8.83-1 for package: plymouth-0.8.3-29.0.1.el6.x86_64
--> Processing Dependency: initscripts for package: 3:ypbind-1.20.4-33.el6.x86_64
--> Processing Dependency: initscripts for package: 3:ypbind-1.20.4-33.el6.x86_64
--> Processing Dependency: initscripts for package: 1:net-snmp-5.5-57.el6.x86_64
--> Processing Dependency: initscripts for package: rp-pppoe-3.10-16.el6.x86_64
--> Processing Dependency: initscripts for package: rp-pppoe-3.10-16.el6.x86_64
--> Processing Dependency: initscripts >= 5.92 for package: rp-pppoe-3.10-16.el6.x86_64
--> Processing Dependency: initscripts >= 6.75 for package: 12:dhclient-4.1.1-51.P1.el6.centos.x86_64
--> Processing Dependency: initscripts for package: numad-0.5-12.20150602git.el6.x86_64
--> Processing Dependency: initscripts for package: numad-0.5-12.20150602git.el6.x86_64
--> Processing Dependency: initscripts for package: numad-0.5-12.20150602git.el6.x86_64
--> Processing Dependency: initscripts for package: numad-0.5-12.20150602git.el6.x86_64
--> Processing Dependency: initscripts for package: lxc-libs-1.0.11-1.el6.x86_64
--> Processing Dependency: initscripts for package: lxc-libs-1.0.11-1.el6.x86_64
--> Processing Dependency: initscripts >= 5.86-1 for package: kbd-1.15-11.el6.x86_64
--> Processing Dependency: initscripts for package: system-config-services-0.99.45-1.el6.3.noarch
--> Processing Dependency: initscripts for package: bluez-4.66-1.el6.x86_64
--> Processing Dependency: initscripts >= 8.36 for package: httpd-2.2.15-53.el6.centos.x86_64
--> Processing Dependency: initscripts for package: 1:smartmontools-5.43-1.el6.x86_64
--> Processing Dependency: initscripts for package: fuse-2.8.3-5.el6.x86_64
--> Running transaction check
---> Package at.x86_64 0:3.1.10-48.el6 will be erased
---> Package bluez.x86_64 0:4.66-1.el6 will be erased
--> Processing Dependency: bluez >= 4.34 for package: pulseaudio-module-bluetooth-0.9.21-24.el6.x86_64
--> Processing Dependency: bluez >= 4.42 for package: gnome-bluetooth-2.28.6-8.el6.x86_64
---> Package dhclient.x86_64 12:4.1.1-51.P1.el6.centos will be erased
--> Processing Dependency: dhclient >= 12:4.1.0 for package: 1:NetworkManager-0.8.1-107.el6.x86_64
---> Package docker-io.x86_64 0:1.7.1-2.el6 will be erased
---> Package dracut.noarch 0:004-409.el6_8.2 will be erased
--> Processing Dependency: dracut for package: kexec-tools-2.0.0-300.el6.x86_64
--> Processing Dependency: dracut = 004-409.el6_8.2 for package: dracut-kernel-004-409.el6_8.2.noarch
---> Package foomatic.x86_64 0:4.0.4-5.el6_7 will be erased
---> Package fuse.x86_64 0:2.8.3-5.el6 will be erased
--> Processing Dependency: fuse for package: gvfs-fuse-1.4.3-26.el6.x86_64
---> Package hal.x86_64 0:0.5.14-14.el6 will be erased
--> Processing Dependency: hal >= 0.5.9 for package: 1:gdm-2.30.4-64.el6.x86_64
--> Processing Dependency: hal for package: libgpod-0.7.2-6.el6.x86_64
--> Processing Dependency: hal for package: xorg-x11-drv-wacom-0.32.0-1.el6.x86_64
--> Processing Dependency: hal for package: libmtp-1.0.1-2.el6.x86_64
--> Processing Dependency: hal for package: system-setup-keyboard-0.7-4.el6.x86_64
--> Processing Dependency: hal >= 0.5.10 for package: hal-info-20090716-5.el6.noarch
--> Processing Dependency: hal >= 0.5.8 for package: gnome-power-manager-2.28.3-7.el6_4.x86_64
--> Processing Dependency: hal = 0.5.14-14.el6 for package: hal-devel-0.5.14-14.el6.x86_64
--> Processing Dependency: hal for package: pm-utils-1.2.5-11.el6.x86_64
--> Processing Dependency: hal for package: xorg-x11-drv-synaptics-1.8.3-1.el6.x86_64
---> Package httpd.x86_64 0:2.2.15-53.el6.centos will be erased
--> Processing Dependency: httpd >= 2.2.0 for package: gnome-user-share-2.28.2-3.el6.x86_64
---> Package kbd.x86_64 0:1.15-11.el6 will be erased
---> Package lxc-libs.x86_64 0:1.0.11-1.el6 will be erased
--> Processing Dependency: liblxc.so.1()(64bit) for package: lua-lxc-1.0.11-1.el6.x86_64
--> Processing Dependency: liblxc.so.1()(64bit) for package: lxc-1.0.11-1.el6.x86_64
---> Package net-snmp.x86_64 1:5.5-57.el6 will be erased
---> Package numad.x86_64 0:0.5-12.20150602git.el6 will be erased
--> Processing Dependency: numad for package: libvirt-0.10.2-60.el6.x86_64
---> Package openssh.x86_64 0:5.3p1-118.1.el6_8 will be erased
--> Processing Dependency: openssh = 5.3p1-118.1.el6_8 for package: openssh-askpass-5.3p1-118.1.el6_8.x86_64
--> Processing Dependency: openssh = 5.3p1-118.1.el6_8 for package: openssh-clients-5.3p1-118.1.el6_8.x86_64
--> Processing Dependency: openssh = 5.3p1-118.1.el6_8 for package: openssh-server-5.3p1-118.1.el6_8.x86_64
---> Package plymouth.x86_64 0:0.8.3-29.0.1.el6 will be erased
--> Processing Dependency: plymouth = 0.8.3-29.0.1.el6 for package: plymouth-gdm-hooks-0.8.3-29.0.1.el6.x86_64
--> Processing Dependency: plymouth = 0.8.3-29.0.1.el6 for package: plymouth-utils-0.8.3-29.0.1.el6.x86_64
---> Package postgresql.x86_64 0:8.4.20-6.el6 will be erased
--> Processing Dependency: postgresql(x86-64) = 8.4.20-6.el6 for package: postgresql-devel-8.4.20-6.el6.x86_64
---> Package quota.x86_64 1:3.17-23.el6 will be erased
---> Package radvd.x86_64 0:1.6-1.el6 will be erased
---> Package rng-tools.x86_64 0:5-2.el6_7 will be erased
---> Package rp-pppoe.x86_64 0:3.10-16.el6 will be erased
---> Package smartmontools.x86_64 1:5.43-1.el6 will be erased
---> Package spice-vdagent.x86_64 0:0.14.0-11.el6 will be erased
---> Package sssd-common.x86_64 0:1.13.3-22.el6 will be erased
--> Processing Dependency: libsss_autofs for package: ipa-client-3.0.0-50.el6.centos.1.x86_64
--> Processing Dependency: libsss_cert.so()(64bit) for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_cert.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_cert.so()(64bit) for package: sssd-proxy-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_cert.so()(64bit) for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_cert.so()(64bit) for package: sssd-common-pac-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_cert.so()(64bit) for package: sssd-krb5-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_child.so()(64bit) for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_child.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_child.so()(64bit) for package: sssd-proxy-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_child.so()(64bit) for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_child.so()(64bit) for package: sssd-common-pac-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_child.so()(64bit) for package: sssd-krb5-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_crypt.so()(64bit) for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_crypt.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_crypt.so()(64bit) for package: sssd-proxy-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_crypt.so()(64bit) for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_crypt.so()(64bit) for package: sssd-common-pac-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_crypt.so()(64bit) for package: sssd-krb5-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_debug.so()(64bit) for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_debug.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_debug.so()(64bit) for package: sssd-proxy-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_debug.so()(64bit) for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_debug.so()(64bit) for package: sssd-krb5-common-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_debug.so()(64bit) for package: sssd-common-pac-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_debug.so()(64bit) for package: sssd-krb5-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_krb5_common.so()(64bit) for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_krb5_common.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_krb5_common.so()(64bit) for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_krb5_common.so()(64bit) for package: sssd-krb5-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_ldap_common.so()(64bit) for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_ldap_common.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_ldap_common.so()(64bit) for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_semanage.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_util.so()(64bit) for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_util.so()(64bit) for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_util.so()(64bit) for package: sssd-proxy-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_util.so()(64bit) for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_util.so()(64bit) for package: sssd-common-pac-1.13.3-22.el6.x86_64
--> Processing Dependency: libsss_util.so()(64bit) for package: sssd-krb5-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-ad-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-ipa-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-proxy-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-ldap-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-krb5-common-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-common-pac-1.13.3-22.el6.x86_64
--> Processing Dependency: sssd-common = 1.13.3-22.el6 for package: sssd-krb5-1.13.3-22.el6.x86_64
---> Package system-config-network-tui.noarch 0:1.6.0.el6.3-4.el6 will be erased
---> Package system-config-services.noarch 0:0.99.45-1.el6.3 will be erased
--> Processing Dependency: system-config-services >= 0.99.29 for package: system-config-services-docs-1.1.8-1.el6.noarch
---> Package ypbind.x86_64 3:1.20.4-33.el6 will be erased
--> Processing Dependency: ypbind for package: yp-tools-2.9-12.el6.x86_64
--> Running transaction check
---> Package NetworkManager.x86_64 1:0.8.1-107.el6 will be erased
--> Processing Dependency: NetworkManager = 1:0.8.1-107.el6 for package: 1:NetworkManager-gnome-0.8.1-107.el6.x86_64
---> Package dracut-kernel.noarch 0:004-409.el6_8.2 will be erased
---> Package gdm.x86_64 1:2.30.4-64.el6 will be erased
--> Processing Dependency: gdm >= 2.21.9-0 for package: 1:gdm-user-switch-applet-2.30.4-64.el6.x86_64
--> Processing Dependency: gdm = 1:2.30.4-64.el6 for package: 1:gdm-plugin-fingerprint-2.30.4-64.el6.x86_64
--> Processing Dependency: gdm for package: pulseaudio-gdm-hooks-0.9.21-24.el6.x86_64
--> Processing Dependency: gdm >= 1:2.22.0 for package: pulseaudio-gdm-hooks-0.9.21-24.el6.x86_64
---> Package gnome-bluetooth.x86_64 0:2.28.6-8.el6 will be erased
---> Package gnome-power-manager.x86_64 0:2.28.3-7.el6_4 will be erased
---> Package gnome-user-share.x86_64 0:2.28.2-3.el6 will be erased
---> Package gvfs-fuse.x86_64 0:1.4.3-26.el6 will be erased
--> Processing Dependency: gvfs-fuse for package: totem-2.28.6-4.el6.x86_64
---> Package hal-devel.x86_64 0:0.5.14-14.el6 will be erased
--> Processing Dependency: hal-devel >= 0.5.7 for package: gnome-vfs2-devel-2.24.2-8.el6.x86_64
---> Package hal-info.noarch 0:20090716-5.el6 will be erased
---> Package ipa-client.x86_64 0:3.0.0-50.el6.centos.1 will be erased
---> Package kexec-tools.x86_64 0:2.0.0-300.el6 will be erased
--> Processing Dependency: kexec-tools for package: system-config-kdump-2.0.5-18.el6.noarch
---> Package libgpod.x86_64 0:0.7.2-6.el6 will be erased
--> Processing Dependency: libgpod.so.4()(64bit) for package: rhythmbox-0.12.8-1.el6.x86_64
---> Package libmtp.x86_64 0:1.0.1-2.el6 will be erased
---> Package libvirt.x86_64 0:0.10.2-60.el6 will be erased
---> Package lua-lxc.x86_64 0:1.0.11-1.el6 will be erased
---> Package lxc.x86_64 0:1.0.11-1.el6 will be erased
---> Package openssh-askpass.x86_64 0:5.3p1-118.1.el6_8 will be erased
---> Package openssh-clients.x86_64 0:5.3p1-118.1.el6_8 will be erased
--> Processing Dependency: openssh-clients for package: systemtap-client-2.9-7.el6.x86_64
--> Processing Dependency: openssh-clients for package: virt-viewer-2.0-14.el6.x86_64
--> Processing Dependency: openssh-clients for package: git-1.7.1-9.el6_9.x86_64
---> Package openssh-server.x86_64 0:5.3p1-118.1.el6_8 will be erased
---> Package plymouth-gdm-hooks.x86_64 0:0.8.3-29.0.1.el6 will be erased
---> Package plymouth-utils.x86_64 0:0.8.3-29.0.1.el6 will be erased
---> Package pm-utils.x86_64 0:1.2.5-11.el6 will be erased
--> Processing Dependency: pm-utils >= 1.2.2.1 for package: DeviceKit-power-014-3.el6.x86_64
--> Processing Dependency: pm-utils for package: libvirt-client-0.10.2-60.el6.x86_64
---> Package postgresql-devel.x86_64 0:8.4.20-6.el6 will be erased
---> Package pulseaudio-module-bluetooth.x86_64 0:0.9.21-24.el6 will be erased
---> Package sssd.x86_64 0:1.13.3-22.el6 will be erased
---> Package sssd-ad.x86_64 0:1.13.3-22.el6 will be erased
---> Package sssd-common-pac.x86_64 0:1.13.3-22.el6 will be erased
---> Package sssd-ipa.x86_64 0:1.13.3-22.el6 will be erased
---> Package sssd-krb5.x86_64 0:1.13.3-22.el6 will be erased
---> Package sssd-krb5-common.x86_64 0:1.13.3-22.el6 will be erased
---> Package sssd-ldap.x86_64 0:1.13.3-22.el6 will be erased
---> Package sssd-proxy.x86_64 0:1.13.3-22.el6 will be erased
---> Package system-config-services-docs.noarch 0:1.1.8-1.el6 will be erased
---> Package system-setup-keyboard.x86_64 0:0.7-4.el6 will be erased
--> Processing Dependency: system-setup-keyboard for package: xorg-x11-server-Xorg-1.17.4-9.el6.centos.x86_64
---> Package xorg-x11-drv-synaptics.x86_64 0:1.8.3-1.el6 will be erased
--> Processing Dependency: xorg-x11-drv-synaptics for package: xorg-x11-drivers-7.3-13.4.el6.x86_64
---> Package xorg-x11-drv-wacom.x86_64 0:0.32.0-1.el6 will be erased
--> Processing Dependency: linuxwacom for package: wacomexpresskeys-0.4.2-3.el6.x86_64
--> Processing Dependency: xorg-x11-drv-wacom >= 0.12.99 for package: 1:control-center-2.28.1-40.el6.x86_64
--> Processing Dependency: xorg-x11-drv-wacom >= 0.12.99 for package: gnome-settings-daemon-2.28.2-35.el6.x86_64
---> Package yp-tools.x86_64 0:2.9-12.el6 will be erased
--> Running transaction check
---> Package DeviceKit-power.x86_64 0:014-3.el6 will be erased
--> Processing Dependency: libdevkit-power-gobject.so.1()(64bit) for package: gnome-packagekit-2.28.3-9.el6.x86_64
--> Processing Dependency: libdevkit-power-gobject.so.1()(64bit) for package: gnome-session-2.28.0-22.el6.x86_64
--> Processing Dependency: DeviceKit-power >= 007 for package: gnome-packagekit-2.28.3-9.el6.x86_64
---> Package NetworkManager-gnome.x86_64 1:0.8.1-107.el6 will be erased
---> Package control-center.x86_64 1:2.28.1-40.el6 will be erased
--> Processing Dependency: libgnome-window-settings.so.1()(64bit) for package: compiz-gnome-0.8.2-24.el6.x86_64
--> Processing Dependency: libgnome-window-settings.so.1()(64bit) for package: 1:control-center-extra-2.28.1-40.el6.x86_64
--> Processing Dependency: control-center = 1:2.28.1-40.el6 for package: 1:control-center-extra-2.28.1-40.el6.x86_64
--> Processing Dependency: control-center >= 2.16.0-5 for package: orca-2.28.2-1.el6.x86_64
---> Package gdm-plugin-fingerprint.x86_64 1:2.30.4-64.el6 will be erased
---> Package gdm-user-switch-applet.x86_64 1:2.30.4-64.el6 will be erased
---> Package git.x86_64 0:1.7.1-9.el6_9 will be erased
--> Processing Dependency: git = 1.7.1-9.el6_9 for package: perl-Git-1.7.1-9.el6_9.noarch
---> Package gnome-settings-daemon.x86_64 0:2.28.2-35.el6 will be erased
---> Package gnome-vfs2-devel.x86_64 0:2.24.2-8.el6 will be erased
--> Processing Dependency: pkgconfig(gnome-vfs-2.0) for package: libgnomeui-devel-2.24.1-4.el6.x86_64
--> Processing Dependency: pkgconfig(gnome-vfs-2.0) for package: libgnome-devel-2.28.0-11.el6.x86_64
--> Processing Dependency: gnome-vfs2-devel >= 2.7.3 for package: libgnomeui-devel-2.24.1-4.el6.x86_64
--> Processing Dependency: gnome-vfs2-devel >= 2.5.3 for package: libgnome-devel-2.28.0-11.el6.x86_64
---> Package libvirt-client.x86_64 0:0.10.2-60.el6 will be erased
--> Processing Dependency: libvirt-qemu.so.0()(64bit) for package: libvirt-devel-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt-qemu.so.0()(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt-qemu.so.0(LIBVIRT_QEMU_0.10.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt-qemu.so.0(LIBVIRT_QEMU_0.8.3)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt-qemu.so.0(LIBVIRT_QEMU_0.9.4)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0()(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0()(64bit) for package: libvirt-devel-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0()(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.0.3)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.0.3)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.0.5)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.0.5)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.0)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.1)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.1)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.4)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.4)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.5)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.5)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.9)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.1.9)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.10.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.10.2)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.2.0)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.2.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.2.1)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.2.1)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.2.3)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.2.3)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.3.0)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.3.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.3.2)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.3.2)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.3.3)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.3.3)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.4.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.4.1)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.4.1)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.4.2)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.4.2)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.4.5)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.5.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.6.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.6.1)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.6.3)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.6.4)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.7.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.7.1)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.7.2)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.7.3)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.7.5)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.7.7)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.8.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.8.1)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.8.2)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.8.5)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.8.6)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.8.8)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.0)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.10)(64bit) for package: virt-top-1.0.4-3.15.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.10)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.11)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.13)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.2)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.3)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.4)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.5)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.7)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.8)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_0.9.9)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt.so.0(LIBVIRT_PRIVATE_0.10.2)(64bit) for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt-client = 0.10.2-60.el6 for package: libvirt-devel-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt-client = 0.10.2-60.el6 for package: libvirt-python-0.10.2-60.el6.x86_64
--> Processing Dependency: libvirt-client >= 0.9.12 for package: libvirt-java-0.4.9-1.el6.noarch
---> Package pulseaudio-gdm-hooks.x86_64 0:0.9.21-24.el6 will be erased
---> Package rhythmbox.x86_64 0:0.12.8-1.el6 will be erased
---> Package system-config-kdump.noarch 0:2.0.5-18.el6 will be erased
---> Package systemtap-client.x86_64 0:2.9-7.el6 will be erased
--> Processing Dependency: systemtap-client = 2.9-7.el6 for package: systemtap-2.9-7.el6.x86_64
---> Package totem.x86_64 0:2.28.6-4.el6 will be erased
--> Processing Dependency: totem = 2.28.6-4.el6 for package: totem-nautilus-2.28.6-4.el6.x86_64
---> Package virt-viewer.x86_64 0:2.0-14.el6 will be erased
---> Package wacomexpresskeys.x86_64 0:0.4.2-3.el6 will be erased
---> Package xorg-x11-drivers.x86_64 0:7.3-13.4.el6 will be erased
---> Package xorg-x11-server-Xorg.x86_64 0:1.17.4-9.el6.centos will be erased
--> Processing Dependency: Xorg for package: xorg-x11-drv-v4l-0.2.0-37.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-i740-1.3.4-12.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-mutouch-1.3.0-6.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-fpit-1.4.0-7.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-xgi-1.6.1-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-elographics-1.4.1-4.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-voodoo-1.2.5-11.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-trident-1.3.6-11.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-siliconmotion-1.7.8-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-s3virge-1.10.7-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-r128-6.10.0-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-fbdev-0.4.3-17.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-hyperpen-1.4.1-6.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-tdfx-1.4.6-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-savage-2.3.7-3.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-qxl-0.1.1-19.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-dummy-0.3.6-16.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-mach64-6.9.4-10.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-vesa-2.3.4-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-mouse-1.9.1-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-void-1.4.1-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-ati-7.6.1-2.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-cirrus-1.5.3-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-nv-2.1.20-6.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-evdev-2.9.2-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-intel-2.99.917-0.4.20151111.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-aiptek-1.4.1-6.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-i128-1.3.6-11.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-acecad-1.5.0-8.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-vmware-13.1.0-2.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-rendition-4.2.6-1.el6.x86_64
--> Processing Dependency: Xorg for package: 1:xorg-x11-drv-nouveau-1.0.12-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-penmount-1.5.0-6.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-keyboard-1.8.1-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-sis-0.10.8-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-mga-1.6.3-9.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-openchrome-0.3.3-7.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-apm-1.2.5-11.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-glint-1.2.8-11.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-sisusb-0.9.6-11.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-vmmouse-13.1.0-1.el6.x86_64
--> Processing Dependency: Xorg for package: xorg-x11-drv-ast-1.1.5-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-v4l-0.2.0-37.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-i740-1.3.4-12.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-mutouch-1.3.0-6.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-fpit-1.4.0-7.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-xgi-1.6.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-elographics-1.4.1-4.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-voodoo-1.2.5-11.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-trident-1.3.6-11.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-siliconmotion-1.7.8-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-s3virge-1.10.7-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-r128-6.10.0-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-fbdev-0.4.3-17.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-hyperpen-1.4.1-6.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-tdfx-1.4.6-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-savage-2.3.7-3.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-qxl-0.1.1-19.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-dummy-0.3.6-16.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-mach64-6.9.4-10.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-vesa-2.3.4-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-mouse-1.9.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-void-1.4.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-ati-7.6.1-2.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-cirrus-1.5.3-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-nv-2.1.20-6.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-evdev-2.9.2-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-intel-2.99.917-0.4.20151111.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-aiptek-1.4.1-6.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-i128-1.3.6-11.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-acecad-1.5.0-8.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-vmware-13.1.0-2.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-rendition-4.2.6-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: 1:xorg-x11-drv-nouveau-1.0.12-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-penmount-1.5.0-6.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-keyboard-1.8.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-sis-0.10.8-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-mga-1.6.3-9.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-openchrome-0.3.3-7.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-apm-1.2.5-11.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-glint-1.2.8-11.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-sisusb-0.9.6-11.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-vmmouse-13.1.0-1.el6.x86_64
--> Processing Dependency: xserver-abi(ansic-0) >= 4 for package: xorg-x11-drv-ast-1.1.5-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-v4l-0.2.0-37.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-i740-1.3.4-12.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-xgi-1.6.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-voodoo-1.2.5-11.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-trident-1.3.6-11.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-siliconmotion-1.7.8-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-s3virge-1.10.7-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-r128-6.10.0-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-fbdev-0.4.3-17.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-mga-1.6.3-9.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-tdfx-1.4.6-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-savage-2.3.7-3.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-qxl-0.1.1-19.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-dummy-0.3.6-16.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-mach64-6.9.4-10.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-vesa-2.3.4-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-ati-7.6.1-2.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-cirrus-1.5.3-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-nv-2.1.20-6.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-i128-1.3.6-11.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-intel-2.99.917-0.4.20151111.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-vmware-13.1.0-2.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-rendition-4.2.6-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: 1:xorg-x11-drv-nouveau-1.0.12-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-sis-0.10.8-1.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-glint-1.2.8-11.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-openchrome-0.3.3-7.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-apm-1.2.5-11.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-sisusb-0.9.6-11.el6.x86_64
--> Processing Dependency: xserver-abi(videodrv-19) >= 0 for package: xorg-x11-drv-ast-1.1.5-1.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-mouse-1.9.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-void-1.4.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-penmount-1.5.0-6.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-hyperpen-1.4.1-6.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-mutouch-1.3.0-6.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-fpit-1.4.0-7.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-evdev-2.9.2-1.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-elographics-1.4.1-4.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-keyboard-1.8.1-1.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-aiptek-1.4.1-6.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-acecad-1.5.0-8.el6.x86_64
--> Processing Dependency: xserver-abi(xinput-21) >= 0 for package: xorg-x11-drv-vmmouse-13.1.0-1.el6.x86_64
--> Processing Dependency: xorg-x11-server-Xorg >= 1.10.99.902 for package: xorg-x11-drv-ati-7.6.1-2.el6.x86_64
--> Running transaction check
---> Package compiz-gnome.x86_64 0:0.8.2-24.el6 will be erased
---> Package control-center-extra.x86_64 1:2.28.1-40.el6 will be erased
---> Package gnome-packagekit.x86_64 0:2.28.3-9.el6 will be erased
---> Package gnome-session.x86_64 0:2.28.0-22.el6 will be erased
--> Processing Dependency: gnome-session = 2.28.0-22.el6 for package: gnome-session-xsession-2.28.0-22.el6.x86_64
--> Processing Dependency: gnome-session for package: desktop-effects-0.8.4-7.el6.x86_64
---> Package libgnome-devel.x86_64 0:2.28.0-11.el6 will be erased
--> Processing Dependency: pkgconfig(libgnome-2.0) for package: libbonoboui-devel-2.24.2-3.el6.x86_64
--> Processing Dependency: libgnome-devel >= 2.13.7 for package: libbonoboui-devel-2.24.2-3.el6.x86_64
---> Package libgnomeui-devel.x86_64 0:2.24.1-4.el6 will be erased
--> Processing Dependency: libgnomeui-devel >= 2.2.0 for package: gnome-desktop-devel-2.28.2-11.el6.centos.x86_64
---> Package libvirt-devel.x86_64 0:0.10.2-60.el6 will be erased
---> Package libvirt-java.noarch 0:0.4.9-1.el6 will be erased
--> Processing Dependency: libvirt-java = 0.4.9-1.el6 for package: libvirt-java-devel-0.4.9-1.el6.noarch
---> Package libvirt-python.x86_64 0:0.10.2-60.el6 will be erased
--> Processing Dependency: libvirt-python >= 0.7.0 for package: virt-manager-0.9.0-31.el6.x86_64
--> Processing Dependency: libvirt-python >= 0.2.0 for package: python-virtinst-0.600.0-29.el6.noarch
---> Package orca.x86_64 0:2.28.2-1.el6 will be erased
---> Package perl-Git.noarch 0:1.7.1-9.el6_9 will be erased
---> Package systemtap.x86_64 0:2.9-7.el6 will be erased
--> Processing Dependency: systemtap >= 1.2 for package: eclipse-callgraph-0.6.1-1.el6.x86_64
---> Package totem-nautilus.x86_64 0:2.28.6-4.el6 will be erased
---> Package virt-top.x86_64 0:1.0.4-3.15.el6 will be erased
---> Package xorg-x11-drv-acecad.x86_64 0:1.5.0-8.el6 will be erased
---> Package xorg-x11-drv-aiptek.x86_64 0:1.4.1-6.el6 will be erased
---> Package xorg-x11-drv-apm.x86_64 0:1.2.5-11.el6 will be erased
---> Package xorg-x11-drv-ast.x86_64 0:1.1.5-1.el6 will be erased
---> Package xorg-x11-drv-ati.x86_64 0:7.6.1-2.el6 will be erased
---> Package xorg-x11-drv-cirrus.x86_64 0:1.5.3-1.el6 will be erased
---> Package xorg-x11-drv-dummy.x86_64 0:0.3.6-16.el6 will be erased
---> Package xorg-x11-drv-elographics.x86_64 0:1.4.1-4.el6 will be erased
---> Package xorg-x11-drv-evdev.x86_64 0:2.9.2-1.el6 will be erased
---> Package xorg-x11-drv-fbdev.x86_64 0:0.4.3-17.el6 will be erased
---> Package xorg-x11-drv-fpit.x86_64 0:1.4.0-7.el6 will be erased
---> Package xorg-x11-drv-glint.x86_64 0:1.2.8-11.el6 will be erased
---> Package xorg-x11-drv-hyperpen.x86_64 0:1.4.1-6.el6 will be erased
---> Package xorg-x11-drv-i128.x86_64 0:1.3.6-11.el6 will be erased
---> Package xorg-x11-drv-i740.x86_64 0:1.3.4-12.el6 will be erased
---> Package xorg-x11-drv-intel.x86_64 0:2.99.917-0.4.20151111.el6 will be erased
---> Package xorg-x11-drv-keyboard.x86_64 0:1.8.1-1.el6 will be erased
---> Package xorg-x11-drv-mach64.x86_64 0:6.9.4-10.el6 will be erased
---> Package xorg-x11-drv-mga.x86_64 0:1.6.3-9.el6 will be erased
---> Package xorg-x11-drv-mouse.x86_64 0:1.9.1-1.el6 will be erased
---> Package xorg-x11-drv-mutouch.x86_64 0:1.3.0-6.el6 will be erased
---> Package xorg-x11-drv-nouveau.x86_64 1:1.0.12-1.el6 will be erased
---> Package xorg-x11-drv-nv.x86_64 0:2.1.20-6.el6 will be erased
---> Package xorg-x11-drv-openchrome.x86_64 0:0.3.3-7.el6 will be erased
---> Package xorg-x11-drv-penmount.x86_64 0:1.5.0-6.el6 will be erased
---> Package xorg-x11-drv-qxl.x86_64 0:0.1.1-19.el6 will be erased
---> Package xorg-x11-drv-r128.x86_64 0:6.10.0-1.el6 will be erased
---> Package xorg-x11-drv-rendition.x86_64 0:4.2.6-1.el6 will be erased
---> Package xorg-x11-drv-s3virge.x86_64 0:1.10.7-1.el6 will be erased
---> Package xorg-x11-drv-savage.x86_64 0:2.3.7-3.el6 will be erased
---> Package xorg-x11-drv-siliconmotion.x86_64 0:1.7.8-1.el6 will be erased
---> Package xorg-x11-drv-sis.x86_64 0:0.10.8-1.el6 will be erased
---> Package xorg-x11-drv-sisusb.x86_64 0:0.9.6-11.el6 will be erased
---> Package xorg-x11-drv-tdfx.x86_64 0:1.4.6-1.el6 will be erased
---> Package xorg-x11-drv-trident.x86_64 0:1.3.6-11.el6 will be erased
---> Package xorg-x11-drv-v4l.x86_64 0:0.2.0-37.el6 will be erased
---> Package xorg-x11-drv-vesa.x86_64 0:2.3.4-1.el6 will be erased
---> Package xorg-x11-drv-vmmouse.x86_64 0:13.1.0-1.el6 will be erased
---> Package xorg-x11-drv-vmware.x86_64 0:13.1.0-2.el6 will be erased
---> Package xorg-x11-drv-void.x86_64 0:1.4.1-1.el6 will be erased
---> Package xorg-x11-drv-voodoo.x86_64 0:1.2.5-11.el6 will be erased
---> Package xorg-x11-drv-xgi.x86_64 0:1.6.1-1.el6 will be erased
--> Running transaction check
---> Package desktop-effects.x86_64 0:0.8.4-7.el6 will be erased
---> Package eclipse-callgraph.x86_64 0:0.6.1-1.el6 will be erased
---> Package gnome-desktop-devel.x86_64 0:2.28.2-11.el6.centos will be erased
---> Package gnome-session-xsession.x86_64 0:2.28.0-22.el6 will be erased
--> Processing Dependency: gnome-session-xsession for package: gnome-panel-2.30.2-16.el6.x86_64
---> Package libbonoboui-devel.x86_64 0:2.24.2-3.el6 will be erased
---> Package libvirt-java-devel.noarch 0:0.4.9-1.el6 will be erased
---> Package python-virtinst.noarch 0:0.600.0-29.el6 will be erased
---> Package virt-manager.x86_64 0:0.9.0-31.el6 will be erased
--> Running transaction check
---> Package gnome-panel.x86_64 0:2.30.2-16.el6 will be erased
--> Processing Dependency: gnome-panel >= 2.20.1-5 for package: 1:gnome-applets-2.28.0-7.el6.centos.x86_64
--> Running transaction check
---> Package gnome-applets.x86_64 1:2.28.0-7.el6.centos will be erased
--> Processing Dependency: /usr/bin/at for package: redhat-lsb-core-4.0-7.el6.centos.x86_64
--> Processing Dependency: /usr/bin/foomatic-rip for package: redhat-lsb-printing-4.0-7.el6.centos.x86_64
--> Processing Dependency: /sbin/service for package: iscsi-initiator-utils-6.2.0.873-21.el6.x86_64
--> Processing Dependency: /sbin/service for package: rsyslog-5.8.10-10.el6_6.x86_64
--> Processing Dependency: /sbin/service for package: rsyslog-5.8.10-10.el6_6.x86_64
--> Processing Dependency: /sbin/service for package: samba-winbind-3.6.23-35.el6_8.x86_64
--> Processing Dependency: /sbin/service for package: samba-winbind-3.6.23-35.el6_8.x86_64
--> Processing Dependency: /sbin/service for package: mdadm-3.3.4-1.el6.x86_64
--> Processing Dependency: /sbin/service for package: mdadm-3.3.4-1.el6.x86_64
--> Processing Dependency: /sbin/service for package: mdadm-3.3.4-1.el6.x86_64
--> Processing Dependency: /sbin/service for package: policycoreutils-2.0.83-29.el6.x86_64
--> Processing Dependency: /sbin/service for package: 1:wpa_supplicant-0.7.3-8.el6.x86_64
--> Processing Dependency: /sbin/service for package: cyrus-sasl-2.1.23-15.el6_6.2.x86_64
--> Processing Dependency: /sbin/service for package: udev-147-2.73.el6.x86_64
--> Processing Dependency: /sbin/service for package: certmonger-0.77.5-2.el6.x86_64
--> Processing Dependency: /sbin/service for package: certmonger-0.77.5-2.el6.x86_64
--> Processing Dependency: /sbin/service for package: 2:postfix-2.6.6-6.el6_7.1.x86_64
--> Processing Dependency: /sbin/service for package: 2:postfix-2.6.6-6.el6_7.1.x86_64
--> Processing Dependency: /sbin/service for package: samba-common-3.6.23-35.el6_8.x86_64
--> Processing Dependency: /sbin/service for package: samba-common-3.6.23-35.el6_8.x86_64
--> Processing Dependency: /sbin/service for package: 1:readahead-1.5.6-2.el6.x86_64
--> Processing Dependency: /sbin/service for package: 1:readahead-1.5.6-2.el6.x86_64
--> Processing Dependency: /sbin/service for package: 2:qemu-kvm-0.12.1.2-2.491.el6_8.1.x86_64
--> Processing Dependency: /sbin/service for package: 2:qemu-kvm-0.12.1.2-2.491.el6_8.1.x86_64
--> Processing Dependency: /sbin/service for package: acpid-1.0.10-3.el6.x86_64
--> Processing Dependency: /sbin/service for package: 1:microcode_ctl-1.17-21.el6.x86_64
--> Processing Dependency: /sbin/service for package: cronie-1.4.4-15.el6_7.1.x86_64
--> Processing Dependency: /sbin/service for package: cronie-1.4.4-15.el6_7.1.x86_64
--> Processing Dependency: /sbin/service for package: subversion-1.6.11-15.el6_7.x86_64
--> Processing Dependency: /sbin/service for package: ntp-4.2.6p5-10.el6.centos.1.x86_64
--> Processing Dependency: /sbin/service for package: ntp-4.2.6p5-10.el6.centos.1.x86_64
--> Processing Dependency: /sbin/service for package: oddjob-0.30-6.el6.x86_64
--> Processing Dependency: /sbin/service for package: oddjob-0.30-6.el6.x86_64
--> Processing Dependency: /sbin/service for package: ntpdate-4.2.6p5-10.el6.centos.1.x86_64
--> Processing Dependency: /sbin/service for package: dnsmasq-2.48-17.el6.x86_64
--> Processing Dependency: /sbin/service for package: dnsmasq-2.48-17.el6.x86_64
--> Processing Dependency: /sbin/service for package: iputils-20071127-21.el6.x86_64
--> Processing Dependency: /sbin/service for package: iputils-20071127-21.el6.x86_64
--> Processing Dependency: /sbin/service for package: 1:autofs-5.0.5-122.el6.x86_64
--> Processing Dependency: /sbin/service for package: 1:autofs-5.0.5-122.el6.x86_64
--> Processing Dependency: /sbin/service for package: ebtables-2.0.9-6.el6.x86_64
--> Processing Dependency: /sbin/service for package: 1:cpuspeed-1.5-22.el6.x86_64
--> Processing Dependency: /sbin/service for package: 1:cups-1.4.2-74.el6.x86_64
--> Processing Dependency: /sbin/service for package: libcgroup-0.40.rc1-17.el6_7.x86_64
--> Processing Dependency: /usr/bin/batch for package: redhat-lsb-core-4.0-7.el6.centos.x86_64
--> Restarting Dependency Resolution with new changes.
--> Running transaction check
---> Package acpid.x86_64 0:1.0.10-3.el6 will be erased
---> Package autofs.x86_64 1:5.0.5-122.el6 will be erased
---> Package certmonger.x86_64 0:0.77.5-2.el6 will be erased
---> Package cpuspeed.x86_64 1:1.5-22.el6 will be erased
---> Package cronie.x86_64 0:1.4.4-15.el6_7.1 will be erased
--> Processing Dependency: cronie = 1.4.4-15.el6_7.1 for package: cronie-anacron-1.4.4-15.el6_7.1.x86_64
---> Package cups.x86_64 1:1.4.2-74.el6 will be erased
--> Processing Dependency: cups >= 1.2.1-1.7 for package: gutenprint-cups-5.2.5-2.el6.x86_64
--> Processing Dependency: cups >= 1:1.4 for package: 1:hpijs-3.14.6-3.el6.x86_64
--> Processing Dependency: cups for package: ptouch-driver-1.3-2.1.el6.x86_64
--> Processing Dependency: cups for package: foomatic-db-ppds-4.0-7.20091126.el6.noarch
---> Package cyrus-sasl.x86_64 0:2.1.23-15.el6_6.2 will be erased
--> Processing Dependency: cyrus-sasl = 2.1.23-15.el6_6.2 for package: cyrus-sasl-devel-2.1.23-15.el6_6.2.x86_64
---> Package dnsmasq.x86_64 0:2.48-17.el6 will be erased
---> Package ebtables.x86_64 0:2.0.9-6.el6 will be erased
---> Package iputils.x86_64 0:20071127-21.el6 will be erased
--> Processing Dependency: iputils for package: rear-1.17.2-4.el6.x86_64
--> Processing Dependency: iputils for package: gpfs.base-3.5.0-13.x86_64
---> Package iscsi-initiator-utils.x86_64 0:6.2.0.873-21.el6 will be erased
---> Package libcgroup.x86_64 0:0.40.rc1-17.el6_7 will be erased
--> Processing Dependency: libcgroup.so.1()(64bit) for package: libcgroup-devel-0.40.rc1-17.el6_7.x86_64
--> Processing Dependency: libcgroup = 0.40.rc1-17.el6_7 for package: libcgroup-devel-0.40.rc1-17.el6_7.x86_64
---> Package mdadm.x86_64 0:3.3.4-1.el6 will be erased
--> Processing Dependency: mdadm >= 2.6.7 for package: udisks-1.0.1-9.el6.x86_64
---> Package microcode_ctl.x86_64 1:1.17-21.el6 will be erased
---> Package ntp.x86_64 0:4.2.6p5-10.el6.centos.1 will be erased
--> Processing Dependency: ntp for package: system-config-date-1.9.60-2.el6.centos.noarch
---> Package ntpdate.x86_64 0:4.2.6p5-10.el6.centos.1 will be erased
---> Package oddjob.x86_64 0:0.30-6.el6 will be erased
--> Processing Dependency: oddjob = 0.30-6.el6 for package: oddjob-mkhomedir-0.30-6.el6.x86_64
---> Package policycoreutils.x86_64 0:2.0.83-29.el6 will be erased
--> Processing Dependency: policycoreutils for package: iptables-1.4.7-16.el6.x86_64
---> Package postfix.x86_64 2:2.6.6-6.el6_7.1 will be erased
---> Package qemu-kvm.x86_64 2:0.12.1.2-2.491.el6_8.1 will be erased
---> Package readahead.x86_64 1:1.5.6-2.el6 will be erased
---> Package redhat-lsb-core.x86_64 0:4.0-7.el6.centos will be erased
--> Processing Dependency: redhat-lsb-core(x86-64) = 4.0-7.el6.centos for package: redhat-lsb-4.0-7.el6.centos.x86_64
--> Processing Dependency: redhat-lsb-core(x86-64) = 4.0 for package: redhat-lsb-graphics-4.0-7.el6.centos.x86_64
---> Package redhat-lsb-printing.x86_64 0:4.0-7.el6.centos will be erased
---> Package rsyslog.x86_64 0:5.8.10-10.el6_6 will be erased
---> Package samba-common.x86_64 0:3.6.23-35.el6_8 will be erased
--> Processing Dependency: samba-common = 3.6.23-35.el6_8 for package: samba-client-3.6.23-35.el6_8.x86_64
---> Package samba-winbind.x86_64 0:3.6.23-35.el6_8 will be erased
--> Processing Dependency: samba-winbind = 3.6.23-35.el6_8 for package: samba-winbind-clients-3.6.23-35.el6_8.x86_64
---> Package subversion.x86_64 0:1.6.11-15.el6_7 will be erased
--> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-javahl-1.6.11-15.el6_7.x86_64
--> Processing Dependency: subversion = 1.6.11-15.el6_7 for package: subversion-javahl-1.6.11-15.el6_7.x86_64
---> Package udev.x86_64 0:147-2.73.el6 will be erased
--> Processing Dependency: dev for package: 1:emacs-common-23.1-28.el6.x86_64
--> Processing Dependency: dev for package: 1:emacs-common-23.1-28.el6.x86_64
--> Processing Dependency: udev >= 143 for package: sane-backends-1.0.21-3.el6.x86_64
--> Processing Dependency: udev for package: b43-openfwwf-5.2-10.el6.noarch
--> Processing Dependency: udev for package: util-linux-ng-2.17.2-12.24.el6.x86_64
--> Processing Dependency: udev >= 147-2.18 for package: device-mapper-1.02.117-7.el6.x86_64
--> Processing Dependency: udev for package: hplip-common-3.14.6-3.el6.x86_64
--> Processing Dependency: udev for package: media-player-info-6-1.el6.noarch
--> Processing Dependency: udev for package: libdrm-2.4.65-2.el6.x86_64
--> Processing Dependency: udev >= 062 for package: pcmciautils-015-4.2.el6.x86_64
--> Processing Dependency: udev for package: crda-3.13_2015.10.22-3.el6.x86_64
--> Processing Dependency: udev for package: biosdevname-0.7.1-3.el6.x86_64
--> Processing Dependency: udev >= 145-3 for package: pulseaudio-0.9.21-24.el6.x86_64
--> Processing Dependency: udev for package: aic94xx-firmware-30-2.el6.noarch
---> Package wpa_supplicant.x86_64 1:0.7.3-8.el6 will be erased
--> Running transaction check
---> Package aic94xx-firmware.noarch 0:30-2.el6 will be erased
---> Package b43-openfwwf.noarch 0:5.2-10.el6 will be erased
---> Package biosdevname.x86_64 0:0.7.1-3.el6 will be erased
---> Package crda.x86_64 0:3.13_2015.10.22-3.el6 will be erased
--> Processing Dependency: crda for package: 1:wireless-tools-29-6.el6.x86_64
---> Package cronie-anacron.x86_64 0:1.4.4-15.el6_7.1 will be erased
---> Package cyrus-sasl-devel.x86_64 0:2.1.23-15.el6_6.2 will be erased
--> Processing Dependency: cyrus-sasl-devel >= 2.1 for package: openldap-devel-2.4.40-12.el6.x86_64
---> Package device-mapper.x86_64 0:1.02.117-7.el6 will be erased
--> Processing Dependency: device-mapper >= 1.02.02-2 for package: dmraid-1.0.0.rc16-11.el6.x86_64
--> Processing Dependency: device-mapper = 1.02.117-7.el6 for package: device-mapper-event-1.02.117-7.el6.x86_64
--> Processing Dependency: device-mapper = 1.02.117-7.el6 for package: device-mapper-libs-1.02.117-7.el6.x86_64
---> Package emacs-common.x86_64 1:23.1-28.el6 will be erased
--> Processing Dependency: emacs-common = 1:23.1-28.el6 for package: 1:emacs-23.1-28.el6.x86_64
---> Package foomatic-db-ppds.noarch 0:4.0-7.20091126.el6 will be erased
--> Processing Dependency: foomatic-db-ppds = 4.0-7.20091126.el6 for package: foomatic-db-4.0-7.20091126.el6.noarch
---> Package gpfs.base.x86_64 0:3.5.0-13 will be erased
--> Processing Dependency: gpfs.base for package: gpfs.gplbin-2.6.32-642.1.1.el6.x86_64-3.5.0-13.x86_64
--> Processing Dependency: gpfs.base for package: gpfs.gpl-3.5.0-13.noarch
--> Processing Dependency: gpfs.base for package: gpfs.gplbin-2.6.32-504.12.2.el6.x86_64-3.5.0-13.x86_64
--> Processing Dependency: gpfs.base for package: gpfs.gplbin-2.6.32-573.22.1.el6.x86_64-3.5.0-13.x86_64
---> Package gutenprint-cups.x86_64 0:5.2.5-2.el6 will be erased
---> Package hpijs.x86_64 1:3.14.6-3.el6 will be erased
---> Package hplip-common.x86_64 0:3.14.6-3.el6 will be erased
--> Processing Dependency: hplip-common(x86-64) = 3.14.6-3.el6 for package: hplip-libs-3.14.6-3.el6.x86_64
---> Package iptables.x86_64 0:1.4.7-16.el6 will be erased
--> Processing Dependency: libip6tc.so.0()(64bit) for package: iptables-ipv6-1.4.7-16.el6.x86_64
--> Processing Dependency: libxtables.so.4()(64bit) for package: iptables-ipv6-1.4.7-16.el6.x86_64
--> Processing Dependency: libxtables.so.4()(64bit) for package: iproute-2.6.32-54.el6.x86_64
--> Processing Dependency: iptables = 1.4.7-16.el6 for package: iptables-ipv6-1.4.7-16.el6.x86_64
--> Processing Dependency: iptables >= 1.4.5 for package: iproute-2.6.32-54.el6.x86_64
--> Processing Dependency: iptables >= 1.2.8 for package: system-config-firewall-base-1.2.27-7.2.el6_6.noarch
---> Package libcgroup-devel.x86_64 0:0.40.rc1-17.el6_7 will be erased
---> Package libdrm.x86_64 0:2.4.65-2.el6 will be erased
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-libEGL-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-libGL-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-libxatracker-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-dri1-drivers-7.11-8.el6.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-libgbm-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: libdrm-devel-2.4.65-2.el6.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-dri-drivers-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm_amdgpu.so.1()(64bit) for package: libdrm-devel-2.4.65-2.el6.x86_64
--> Processing Dependency: libdrm_amdgpu.so.1()(64bit) for package: mesa-dri-drivers-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm_intel.so.1()(64bit) for package: libdrm-devel-2.4.65-2.el6.x86_64
--> Processing Dependency: libdrm_intel.so.1()(64bit) for package: mesa-dri-drivers-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm_nouveau.so.1()(64bit) for package: libdrm-devel-2.4.65-2.el6.x86_64
--> Processing Dependency: libdrm_nouveau2.so.2()(64bit) for package: libdrm-devel-2.4.65-2.el6.x86_64
--> Processing Dependency: libdrm_radeon.so.1()(64bit) for package: libdrm-devel-2.4.65-2.el6.x86_64
--> Processing Dependency: libdrm_radeon.so.1()(64bit) for package: mesa-dri-drivers-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm >= 2.4.24-1 for package: mesa-libGL-11.0.7-4.el6.x86_64
--> Processing Dependency: libdrm = 2.4.65-2.el6 for package: libdrm-devel-2.4.65-2.el6.x86_64
---> Package media-player-info.noarch 0:6-1.el6 will be erased
---> Package oddjob-mkhomedir.x86_64 0:0.30-6.el6 will be erased
---> Package pcmciautils.x86_64 0:015-4.2.el6 will be erased
---> Package ptouch-driver.x86_64 0:1.3-2.1.el6 will be erased
--> Processing Dependency: ptouch-driver for package: printer-filters-1.1-4.1.el6.noarch
---> Package pulseaudio.x86_64 0:0.9.21-24.el6 will be erased
--> Processing Dependency: libprotocol-native.so()(64bit) for package: pulseaudio-module-x11-0.9.21-24.el6.x86_64
--> Processing Dependency: libpulsecore-0.9.21.so()(64bit) for package: pulseaudio-module-gconf-0.9.21-24.el6.x86_64
--> Processing Dependency: libpulsecore-0.9.21.so()(64bit) for package: pulseaudio-module-x11-0.9.21-24.el6.x86_64
--> Processing Dependency: pulseaudio for package: alsa-plugins-pulseaudio-1.1.0-1.el6.x86_64
--> Processing Dependency: pulseaudio = 0.9.21-24.el6 for package: pulseaudio-module-gconf-0.9.21-24.el6.x86_64
--> Processing Dependency: pulseaudio = 0.9.21-24.el6 for package: pulseaudio-module-x11-0.9.21-24.el6.x86_64
---> Package rear.x86_64 0:1.17.2-4.el6 will be erased
---> Package redhat-lsb.x86_64 0:4.0-7.el6.centos will be erased
--> Processing Dependency: redhat-lsb(x86-64) = 4.0-7.el6.centos for package: redhat-lsb-compat-4.0-7.el6.centos.x86_64
---> Package redhat-lsb-graphics.x86_64 0:4.0-7.el6.centos will be erased
---> Package samba-client.x86_64 0:3.6.23-35.el6_8 will be erased
---> Package samba-winbind-clients.x86_64 0:3.6.23-35.el6_8 will be erased
--> Processing Dependency: libwbclient.so.0()(64bit) for package: libsmbclient-3.6.23-35.el6_8.x86_64
--> Processing Dependency: libwbclient.so.0()(64bit) for package: cifs-utils-4.8.1-20.el6.x86_64
--> Processing Dependency: samba-winbind-clients = 3.6.23-35.el6_8 for package: libsmbclient-3.6.23-35.el6_8.x86_64
---> Package sane-backends.x86_64 0:1.0.21-3.el6 will be erased
--> Processing Dependency: sane-backends = 1.0.21-3.el6 for package: sane-backends-libs-1.0.21-3.el6.x86_64
--> Processing Dependency: sane-backends for package: libsane-hpaio-3.14.6-3.el6.x86_64
--> Processing Dependency: sane-backends for package: sane-frontends-1.0.14-9.2.el6.x86_64
---> Package subversion-javahl.x86_64 0:1.6.11-15.el6_7 will be erased
--> Processing Dependency: subversion-javahl >= 1.5 for package: svnkit-1.3.0-3.el6.x86_64
--> Processing Dependency: subversion-javahl >= 1.6 for package: eclipse-subclipse-1.6.5-6.el6.x86_64
---> Package system-config-date.noarch 0:1.9.60-2.el6.centos will be erased
--> Processing Dependency: system-config-date >= 1.9.35 for package: system-config-date-docs-1.0.11-1.el6.noarch
---> Package udisks.x86_64 0:1.0.1-9.el6 will be erased
--> Processing Dependency: udisks >= 1.0.0 for package: gnome-disk-utility-libs-2.30.1-3.el6.x86_64
---> Package util-linux-ng.x86_64 0:2.17.2-12.24.el6 will be erased
--> Processing Dependency: util-linux for package: xmlto-0.0.23-3.el6.x86_64
--> Processing Dependency: util-linux for package: rarian-0.8.1-5.1.el6.x86_64
--> Processing Dependency: util-linux for package: prelink-0.4.6-3.1.el6_4.x86_64
--> Processing Dependency: util-linux for package: usermode-1.102-3.el6.x86_64
--> Processing Dependency: util-linux-ng for package: virt-what-1.11-1.2.el6.x86_64
--> Running transaction check
---> Package alsa-plugins-pulseaudio.x86_64 0:1.1.0-1.el6 will be erased
---> Package cifs-utils.x86_64 0:4.8.1-20.el6 will be erased
---> Package device-mapper-event.x86_64 0:1.02.117-7.el6 will be erased
--> Processing Dependency: device-mapper-event = 1.02.117-7.el6 for package: lvm2-libs-2.02.143-7.el6.x86_64
--> Processing Dependency: device-mapper-event for package: dmraid-events-1.0.0.rc16-11.el6.x86_64
---> Package device-mapper-libs.x86_64 0:1.02.117-7.el6 will be erased
--> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: kpartx-0.4.9-93.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: cryptsetup-luks-libs-1.2.0-11.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: parted-2.1-29.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: device-mapper-event-libs-1.02.117-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: kpartx-0.4.9-93.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: cryptsetup-luks-libs-1.2.0-11.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: parted-2.1-29.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: device-mapper-event-libs-1.02.117-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_100)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_101)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_103)(64bit) for package: device-mapper-event-libs-1.02.117-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_103)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_104)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_110)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_113)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: device-mapper-event-libs-1.02.117-7.el6.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: lvm2-2.02.143-7.el6.x86_64
--> Processing Dependency: device-mapper-libs >= 1.02.61 for package: cryptsetup-luks-libs-1.2.0-11.el6.x86_64
---> Package dmraid.x86_64 0:1.0.0.rc16-11.el6 will be erased
---> Package eclipse-subclipse.x86_64 0:1.6.5-6.el6 will be erased
---> Package emacs.x86_64 1:23.1-28.el6 will be erased
---> Package foomatic-db.noarch 0:4.0-7.20091126.el6 will be erased
---> Package gnome-disk-utility-libs.x86_64 0:2.30.1-3.el6 will be erased
--> Processing Dependency: libgdu.so.0()(64bit) for package: gnome-disk-utility-2.30.1-3.el6.x86_64
--> Processing Dependency: libgdu.so.0()(64bit) for package: gvfs-1.4.3-26.el6.x86_64
--> Processing Dependency: gnome-disk-utility-libs = 2.30.1-3.el6 for package: gnome-disk-utility-2.30.1-3.el6.x86_64
--> Processing Dependency: gnome-disk-utility-libs = 2.30.1-3.el6 for package: gnome-disk-utility-ui-libs-2.30.1-3.el6.x86_64
---> Package gpfs.gpl.noarch 0:3.5.0-13 will be erased
---> Package gpfs.gplbin-2.6.32-504.12.2.el6.x86_64.x86_64 0:3.5.0-13 will be erased
---> Package gpfs.gplbin-2.6.32-573.22.1.el6.x86_64.x86_64 0:3.5.0-13 will be erased
---> Package gpfs.gplbin-2.6.32-642.1.1.el6.x86_64.x86_64 0:3.5.0-13 will be erased
---> Package hplip-libs.x86_64 0:3.14.6-3.el6 will be erased
---> Package iproute.x86_64 0:2.6.32-54.el6 will be erased
--> Processing Dependency: iproute for package: ipa-python-3.0.0-50.el6.centos.1.x86_64
---> Package iptables-ipv6.x86_64 0:1.4.7-16.el6 will be erased
---> Package libdrm-devel.x86_64 0:2.4.65-2.el6 will be erased
--> Processing Dependency: pkgconfig(libdrm) >= 2.4.60 for package: mesa-libGL-devel-11.0.7-4.el6.x86_64
---> Package libsane-hpaio.x86_64 0:3.14.6-3.el6 will be erased
---> Package libsmbclient.x86_64 0:3.6.23-35.el6_8 will be erased
--> Processing Dependency: libsmbclient.so.0()(64bit) for package: gnome-vfs2-smb-2.24.2-8.el6.x86_64
--> Processing Dependency: libsmbclient.so.0()(64bit) for package: gvfs-smb-1.4.3-26.el6.x86_64
--> Processing Dependency: libsmbclient.so.0()(64bit) for package: system-config-printer-libs-1.1.16-25.el6.x86_64
--> Processing Dependency: libsmbclient >= 3.0.8-0.pre1.3 for package: gnome-vfs2-smb-2.24.2-8.el6.x86_64
---> Package mesa-dri-drivers.x86_64 0:11.0.7-4.el6 will be erased
---> Package mesa-dri1-drivers.x86_64 0:7.11-8.el6 will be erased
---> Package mesa-libEGL.x86_64 0:11.0.7-4.el6 will be erased
---> Package mesa-libGL.x86_64 0:11.0.7-4.el6 will be erased
--> Processing Dependency: libGL.so.1()(64bit) for package: compiz-0.8.2-24.el6.x86_64
--> Processing Dependency: libGL.so.1()(64bit) for package: 1:qt-x11-4.6.2-28.el6_5.x86_64
--> Processing Dependency: libGL.so.1()(64bit) for package: mesa-libGLU-11.0.7-4.el6.x86_64
--> Processing Dependency: libGL.so.1()(64bit) for package: glx-utils-11.0.7-4.el6.x86_64
--> Processing Dependency: libGL.so.1()(64bit) for package: mesa-libGLw-6.5.1-10.el6.x86_64
--> Processing Dependency: libGL.so.1()(64bit) for package: 1:phonon-backend-gstreamer-4.6.2-28.el6_5.x86_64
--> Processing Dependency: mesa-libGL >= 7.0.1-2.fc8 for package: compiz-0.8.2-24.el6.x86_64
---> Package mesa-libgbm.x86_64 0:11.0.7-4.el6 will be erased
---> Package mesa-libxatracker.x86_64 0:11.0.7-4.el6 will be erased
---> Package openldap-devel.x86_64 0:2.4.40-12.el6 will be erased
---> Package prelink.x86_64 0:0.4.6-3.1.el6_4 will be erased
---> Package printer-filters.noarch 0:1.1-4.1.el6 will be erased
---> Package pulseaudio-module-gconf.x86_64 0:0.9.21-24.el6 will be erased
---> Package pulseaudio-module-x11.x86_64 0:0.9.21-24.el6 will be erased
---> Package rarian.x86_64 0:0.8.1-5.1.el6 will be erased
--> Processing Dependency: librarian.so.0()(64bit) for package: rarian-compat-0.8.1-5.1.el6.x86_64
--> Processing Dependency: librarian.so.0()(64bit) for package: yelp-2.28.1-17.el6_3.x86_64
--> Processing Dependency: rarian for package: rarian-compat-0.8.1-5.1.el6.x86_64
--> Processing Dependency: rarian = 0.8.1-5.1.el6 for package: rarian-compat-0.8.1-5.1.el6.x86_64
--> Processing Dependency: rarian >= 0.7.0 for package: yelp-2.28.1-17.el6_3.x86_64
---> Package redhat-lsb-compat.x86_64 0:4.0-7.el6.centos will be erased
---> Package sane-backends-libs.x86_64 0:1.0.21-3.el6 will be erased
--> Processing Dependency: sane-backends-libs(x86-64) = 1.0.21-3.el6 for package: sane-backends-libs-gphoto2-1.0.21-3.el6.x86_64
---> Package sane-frontends.x86_64 0:1.0.14-9.2.el6 will be erased
---> Package svnkit.x86_64 0:1.3.0-3.el6 will be erased
--> Processing Dependency: svnkit = 1.3.0 for package: eclipse-svnkit-1.3.0-3.el6.x86_64
---> Package system-config-date-docs.noarch 0:1.0.11-1.el6 will be erased
---> Package system-config-firewall-base.noarch 0:1.2.27-7.2.el6_6 will be erased
--> Processing Dependency: system-config-firewall-base = 1.2.27-7.2.el6_6 for package: system-config-firewall-tui-1.2.27-7.2.el6_6.noarch
--> Processing Dependency: system-config-firewall-base = 1.2.27-7.2.el6_6 for package: system-config-firewall-1.2.27-7.2.el6_6.noarch
---> Package usermode.x86_64 0:1.102-3.el6 will be erased
--> Processing Dependency: usermode >= 1.98 for package: eclipse-oprofile-0.6.1-1.el6.x86_64
--> Processing Dependency: usermode for package: setuptool-1.19.9-4.el6.x86_64
--> Processing Dependency: usermode = 1.102-3.el6 for package: usermode-gtk-1.102-3.el6.x86_64
--> Processing Dependency: usermode >= 1.36 for package: system-config-keyboard-1.3.1-6.el6.x86_64
---> Package virt-what.x86_64 0:1.11-1.2.el6 will be erased
---> Package wireless-tools.x86_64 1:29-6.el6 will be erased
--> Processing Dependency: libiw.so.29()(64bit) for package: python-iwlib-0.1-1.2.el6.x86_64
--> Processing Dependency: wireless-tools >= 28-0.pre8.5 for package: python-iwlib-0.1-1.2.el6.x86_64
---> Package xmlto.x86_64 0:0.0.23-3.el6 will be erased
--> Running transaction check
---> Package compiz.x86_64 0:0.8.2-24.el6 will be erased
---> Package cryptsetup-luks-libs.x86_64 0:1.2.0-11.el6 will be erased
--> Processing Dependency: libcryptsetup.so.1()(64bit) for package: cryptsetup-luks-1.2.0-11.el6.x86_64
--> Processing Dependency: libcryptsetup.so.1(CRYPTSETUP_1.0)(64bit) for package: cryptsetup-luks-1.2.0-11.el6.x86_64
--> Processing Dependency: cryptsetup-luks-libs = 1.2.0-11.el6 for package: cryptsetup-luks-1.2.0-11.el6.x86_64
---> Package device-mapper-event-libs.x86_64 0:1.02.117-7.el6 will be erased
---> Package dmraid-events.x86_64 0:1.0.0.rc16-11.el6 will be erased
---> Package eclipse-oprofile.x86_64 0:0.6.1-1.el6 will be erased
---> Package eclipse-svnkit.x86_64 0:1.3.0-3.el6 will be erased
---> Package glx-utils.x86_64 0:11.0.7-4.el6 will be erased
---> Package gnome-disk-utility.x86_64 0:2.30.1-3.el6 will be erased
---> Package gnome-disk-utility-ui-libs.x86_64 0:2.30.1-3.el6 will be erased
---> Package gnome-vfs2-smb.x86_64 0:2.24.2-8.el6 will be erased
---> Package gvfs.x86_64 0:1.4.3-26.el6 will be erased
--> Processing Dependency: libgvfscommon-dnssd.so.0()(64bit) for package: gvfs-devel-1.4.3-26.el6.x86_64
--> Processing Dependency: libgvfscommon.so.0()(64bit) for package: gvfs-devel-1.4.3-26.el6.x86_64
--> Processing Dependency: libgvfscommon.so.0()(64bit) for package: gvfs-gphoto2-1.4.3-26.el6.x86_64
--> Processing Dependency: libgvfscommon.so.0()(64bit) for package: gvfs-archive-1.4.3-26.el6.x86_64
--> Processing Dependency: libgvfscommon.so.0()(64bit) for package: gvfs-afc-1.4.3-26.el6.x86_64
--> Processing Dependency: libgvfscommon.so.0()(64bit) for package: gvfs-obexftp-1.4.3-26.el6.x86_64
--> Processing Dependency: gvfs = 1.4.3-26.el6 for package: gvfs-archive-1.4.3-26.el6.x86_64
--> Processing Dependency: gvfs >= 1.4.0 for package: nautilus-2.28.4-25.el6.x86_64
--> Processing Dependency: gvfs = 1.4.3-26.el6 for package: gvfs-gphoto2-1.4.3-26.el6.x86_64
--> Processing Dependency: gvfs = 1.4.3-26.el6 for package: gvfs-obexftp-1.4.3-26.el6.x86_64
--> Processing Dependency: gvfs = 1.4.3-26.el6 for package: gvfs-devel-1.4.3-26.el6.x86_64
--> Processing Dependency: gvfs = 1.4.3-26.el6 for package: gvfs-afc-1.4.3-26.el6.x86_64
---> Package gvfs-smb.x86_64 0:1.4.3-26.el6 will be erased
---> Package ipa-python.x86_64 0:3.0.0-50.el6.centos.1 will be erased
---> Package kpartx.x86_64 0:0.4.9-93.el6 will be erased
---> Package lvm2.x86_64 0:2.02.143-7.el6 will be erased
---> Package lvm2-libs.x86_64 0:2.02.143-7.el6 will be erased
---> Package mesa-libGL-devel.x86_64 0:11.0.7-4.el6 will be erased
--> Processing Dependency: libGL-devel for package: mesa-libGLU-devel-11.0.7-4.el6.x86_64
--> Processing Dependency: libGL-devel for package: mesa-libGLw-devel-6.5.1-10.el6.x86_64
--> Processing Dependency: libGL-devel for package: 1:qt-devel-4.6.2-28.el6_5.x86_64
--> Processing Dependency: pkgconfig(gl) for package: mesa-libGLU-devel-11.0.7-4.el6.x86_64
--> Processing Dependency: mesa-libGL-devel for package: qt3-devel-3.3.8b-30.el6.x86_64
---> Package mesa-libGLU.x86_64 0:11.0.7-4.el6 will be erased
---> Package mesa-libGLw.x86_64 0:6.5.1-10.el6 will be erased
---> Package parted.x86_64 0:2.1-29.el6 will be erased
---> Package phonon-backend-gstreamer.x86_64 1:4.6.2-28.el6_5 will be erased
---> Package python-iwlib.x86_64 0:0.1-1.2.el6 will be erased
---> Package qt-x11.x86_64 1:4.6.2-28.el6_5 will be erased
--> Processing Dependency: libQtGui.so.4()(64bit) for package: ibus-qt-1.3.0-2.el6.x86_64
---> Package rarian-compat.x86_64 0:0.8.1-5.1.el6 will be erased
--> Processing Dependency: scrollkeeper for package: sound-juicer-2.28.1-6.el6.x86_64
--> Processing Dependency: scrollkeeper for package: sound-juicer-2.28.1-6.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gthumb-2.10.11-8.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gthumb-2.10.11-8.el6.x86_64
--> Processing Dependency: scrollkeeper >= 0.1.4 for package: gok-2.28.1-5.el6.x86_64
--> Processing Dependency: scrollkeeper >= 0.1.4 for package: gok-2.28.1-5.el6.x86_64
--> Processing Dependency: scrollkeeper for package: evince-2.28.2-19.el6.x86_64
--> Processing Dependency: scrollkeeper for package: evince-2.28.2-19.el6.x86_64
--> Processing Dependency: scrollkeeper for package: eog-2.28.2-4.el6.x86_64
--> Processing Dependency: scrollkeeper for package: eog-2.28.2-4.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gtk-doc-1.11-5.1.el6.noarch
--> Processing Dependency: scrollkeeper for package: gtk-doc-1.11-5.1.el6.noarch
--> Processing Dependency: scrollkeeper for package: gtk-doc-1.11-5.1.el6.noarch
--> Processing Dependency: scrollkeeper for package: gcalctool-5.28.2-3.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gcalctool-5.28.2-3.el6.x86_64
--> Processing Dependency: scrollkeeper >= 0.1.4 for package: 1:gedit-2.28.4-4.el6.x86_64
--> Processing Dependency: scrollkeeper >= 0.1.4 for package: 1:gedit-2.28.4-4.el6.x86_64
--> Processing Dependency: scrollkeeper for package: 1:gnome-utils-2.28.1-10.el6.x86_64
--> Processing Dependency: scrollkeeper for package: 1:gnome-utils-2.28.1-10.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gnome-terminal-2.31.3-11.el6_6.x86_64
--> Processing Dependency: scrollkeeper for package: gnome-terminal-2.31.3-11.el6_6.x86_64
--> Processing Dependency: scrollkeeper for package: gucharmap-2.28.2-2.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gucharmap-2.28.2-2.el6.x86_64
--> Processing Dependency: scrollkeeper for package: seahorse-2.28.1-4.el6.x86_64
--> Processing Dependency: scrollkeeper for package: seahorse-2.28.1-4.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gnome-system-monitor-2.28.0-11.el6.x86_64
--> Processing Dependency: scrollkeeper for package: gnome-system-monitor-2.28.0-11.el6.x86_64
--> Processing Dependency: scrollkeeper for package: file-roller-2.28.2-7.el6.x86_64
--> Processing Dependency: scrollkeeper for package: file-roller-2.28.2-7.el6.x86_64
--> Processing Dependency: scrollkeeper for package: zenity-2.28.0-1.el6.x86_64
--> Processing Dependency: scrollkeeper for package: zenity-2.28.0-1.el6.x86_64
--> Processing Dependency: scrollkeeper >= 0.3.11 for package: gnome-user-docs-2.28.0-4.el6.noarch
--> Processing Dependency: scrollkeeper >= 0.3.11 for package: gnome-user-docs-2.28.0-4.el6.noarch
--> Processing Dependency: rarian-compat for package: system-config-users-docs-1.0.8-2.el6.noarch
---> Package sane-backends-libs-gphoto2.x86_64 0:1.0.21-3.el6 will be erased
--> Processing Dependency: libsane.so.1()(64bit) for package: xsane-gimp-0.997-8.el6.x86_64
--> Processing Dependency: libsane.so.1()(64bit) for package: xsane-0.997-8.el6.x86_64
---> Package setuptool.x86_64 0:1.19.9-4.el6 will be erased
---> Package system-config-firewall.noarch 0:1.2.27-7.2.el6_6 will be erased
---> Package system-config-firewall-tui.noarch 0:1.2.27-7.2.el6_6 will be erased
---> Package system-config-keyboard.x86_64 0:1.3.1-6.el6 will be erased
---> Package system-config-printer-libs.x86_64 0:1.1.16-25.el6 will be erased
--> Processing Dependency: system-config-printer-libs = 1.1.16-25.el6 for package: system-config-printer-1.1.16-25.el6.x86_64
--> Processing Dependency: system-config-printer-libs = 1.1.16-25.el6 for package: system-config-printer-udev-1.1.16-25.el6.x86_64
---> Package usermode-gtk.x86_64 0:1.102-3.el6 will be erased
--> Processing Dependency: usermode-gtk >= 1.94 for package: system-config-users-1.2.106-8.el6.noarch
--> Processing Dependency: usermode-gtk for package: authconfig-gtk-6.1.12-23.el6.x86_64
---> Package yelp.x86_64 0:2.28.1-17.el6_3 will be erased
--> Running transaction check
---> Package authconfig-gtk.x86_64 0:6.1.12-23.el6 will be erased
---> Package cryptsetup-luks.x86_64 0:1.2.0-11.el6 will be erased
---> Package eog.x86_64 0:2.28.2-4.el6 will be erased
---> Package evince.x86_64 0:2.28.2-19.el6 will be erased
---> Package file-roller.x86_64 0:2.28.2-7.el6 will be erased
---> Package gcalctool.x86_64 0:5.28.2-3.el6 will be erased
---> Package gedit.x86_64 1:2.28.4-4.el6 will be erased
---> Package gnome-system-monitor.x86_64 0:2.28.0-11.el6 will be erased
---> Package gnome-terminal.x86_64 0:2.31.3-11.el6_6 will be erased
--> Processing Dependency: gnome-terminal for package: nautilus-open-terminal-0.17-4.el6.x86_64
---> Package gnome-user-docs.noarch 0:2.28.0-4.el6 will be erased
---> Package gnome-utils.x86_64 1:2.28.1-10.el6 will be erased
---> Package gok.x86_64 0:2.28.1-5.el6 will be erased
---> Package gthumb.x86_64 0:2.10.11-8.el6 will be erased
---> Package gtk-doc.noarch 0:1.11-5.1.el6 will be erased
--> Processing Dependency: gtk-doc for package: libgnomecanvas-devel-2.26.0-4.el6.x86_64
--> Processing Dependency: gtk-doc for package: libgweather-devel-2.28.0-5.el6.x86_64
--> Processing Dependency: gtk-doc for package: gnome-keyring-devel-2.28.2-8.el6_3.x86_64
--> Processing Dependency: gtk-doc for package: libgdata-devel-0.6.4-2.el6.x86_64
--> Processing Dependency: gtk-doc for package: libcanberra-devel-0.22-3.el6.x86_64
--> Processing Dependency: gtk-doc for package: ORBit2-devel-2.14.17-5.el6.x86_64
--> Processing Dependency: gtk-doc for package: polkit-docs-0.96-11.el6.x86_64
---> Package gucharmap.x86_64 0:2.28.2-2.el6 will be erased
---> Package gvfs-afc.x86_64 0:1.4.3-26.el6 will be erased
---> Package gvfs-archive.x86_64 0:1.4.3-26.el6 will be erased
---> Package gvfs-devel.x86_64 0:1.4.3-26.el6 will be erased
---> Package gvfs-gphoto2.x86_64 0:1.4.3-26.el6 will be erased
---> Package gvfs-obexftp.x86_64 0:1.4.3-26.el6 will be erased
---> Package ibus-qt.x86_64 0:1.3.0-2.el6 will be erased
---> Package mesa-libGLU-devel.x86_64 0:11.0.7-4.el6 will be erased
---> Package mesa-libGLw-devel.x86_64 0:6.5.1-10.el6 will be erased
---> Package nautilus.x86_64 0:2.28.4-25.el6 will be erased
--> Processing Dependency: nautilus = 2.28.4-25.el6 for package: nautilus-extensions-2.28.4-25.el6.x86_64
---> Package qt-devel.x86_64 1:4.6.2-28.el6_5 will be erased
---> Package qt3-devel.x86_64 0:3.3.8b-30.el6 will be erased
---> Package seahorse.x86_64 0:2.28.1-4.el6 will be erased
---> Package sound-juicer.x86_64 0:2.28.1-6.el6 will be erased
---> Package system-config-printer.x86_64 0:1.1.16-25.el6 will be erased
---> Package system-config-printer-udev.x86_64 0:1.1.16-25.el6 will be erased
---> Package system-config-users.noarch 0:1.2.106-8.el6 will be erased
---> Package system-config-users-docs.noarch 0:1.0.8-2.el6 will be erased
---> Package xsane.x86_64 0:0.997-8.el6 will be erased
---> Package xsane-gimp.x86_64 0:0.997-8.el6 will be erased
---> Package zenity.x86_64 0:2.28.0-1.el6 will be erased
--> Processing Dependency: zenity for package: metacity-2.28.0-23.el6.x86_64
--> Running transaction check
---> Package ORBit2-devel.x86_64 0:2.14.17-5.el6 will be erased
--> Processing Dependency: pkgconfig(ORBit-2.0) for package: libbonobo-devel-2.24.2-5.el6.x86_64
--> Processing Dependency: pkgconfig(ORBit-2.0) for package: GConf2-devel-2.28.0-6.el6.x86_64
--> Processing Dependency: ORBit2-devel >= 2.7.5 for package: libbonobo-devel-2.24.2-5.el6.x86_64
--> Processing Dependency: ORBit2-devel >= 2.8.0 for package: GConf2-devel-2.28.0-6.el6.x86_64
---> Package gnome-keyring-devel.x86_64 0:2.28.2-8.el6_3 will be erased
--> Processing Dependency: gnome-keyring-devel for package: evolution-data-server-devel-2.32.3-23.el6.x86_64
---> Package libcanberra-devel.x86_64 0:0.22-3.el6 will be erased
---> Package libgdata-devel.x86_64 0:0.6.4-2.el6 will be erased
---> Package libgnomecanvas-devel.x86_64 0:2.26.0-4.el6 will be erased
---> Package libgweather-devel.x86_64 0:2.28.0-5.el6 will be erased
---> Package metacity.x86_64 0:2.28.0-23.el6 will be erased
---> Package nautilus-extensions.x86_64 0:2.28.4-25.el6 will be erased
--> Processing Dependency: libnautilus-extension.so.1()(64bit) for package: brasero-nautilus-2.30.3-3.el6.x86_64
--> Processing Dependency: libnautilus-extension.so.1()(64bit) for package: nautilus-sendto-2.28.2-4.el6.x86_64
---> Package nautilus-open-terminal.x86_64 0:0.17-4.el6 will be erased
---> Package polkit-docs.x86_64 0:0.96-11.el6 will be erased
--> Processing Dependency: polkit-docs = 0.96-11.el6 for package: polkit-devel-0.96-11.el6.x86_64
--> Running transaction check
---> Package GConf2-devel.x86_64 0:2.28.0-6.el6 will be erased
---> Package brasero-nautilus.x86_64 0:2.30.3-3.el6 will be erased
---> Package evolution-data-server-devel.x86_64 0:2.32.3-23.el6 will be erased
---> Package libbonobo-devel.x86_64 0:2.24.2-5.el6 will be erased
---> Package nautilus-sendto.x86_64 0:2.28.2-4.el6 will be erased
---> Package polkit-devel.x86_64 0:0.96-11.el6 will be erased
--> Processing Dependency: /usr/bin/getopt for package: fakeroot-1.12.2-22.2.el6.x86_64
--> Processing Dependency: /etc/cron.d for package: crontabs-1.10-33.el6.noarch
--> Processing Dependency: /etc/cron.d for package: sysstat-9.0.4-31.el6.x86_64
--> Processing Dependency: /sbin/nologin for package: 1:nfs-utils-1.2.3-70.el6.x86_64
--> Restarting Dependency Resolution with new changes.
--> Running transaction check
---> Package crontabs.noarch 0:1.10-33.el6 will be erased
---> Package fakeroot.x86_64 0:1.12.2-22.2.el6 will be erased
--> Processing Dependency: fakeroot for package: rpmdevtools-7.5-2.el6.noarch
---> Package nfs-utils.x86_64 1:1.2.3-70.el6 will be erased
--> Processing Dependency: nfs-utils >= 1.2.1-11 for package: nfs-utils-lib-1.1.5-11.el6.x86_64
---> Package sysstat.x86_64 0:9.0.4-31.el6 will be erased
--> Running transaction check
---> Package nfs-utils-lib.x86_64 0:1.1.5-11.el6 will be erased
--> Processing Dependency: nfs-utils-lib for package: libacl-devel-2.2.49-6.el6.x86_64
---> Package rpmdevtools.noarch 0:7.5-2.el6 will be erased
--> Processing Dependency: rpmdevtools for package: eclipse-rpm-editor-0.5.0-2.el6.x86_64
--> Running transaction check
---> Package eclipse-rpm-editor.x86_64 0:0.5.0-2.el6 will be erased
---> Package libacl-devel.x86_64 0:2.2.49-6.el6 will be erased
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package Arch Version Repository Size

Removing:
oraclelinux-release x86_64 6:6Server-10.0.2 installed 49 k
oraclelinux-release-el6 noarch 1.0-7.el6 installed 29 k
redhat-release-server x86_64 1:6Server-6.10.0.12.0.1.el6
installed 0.0
Removing for dependencies:
DeviceKit-power x86_64 014-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
241 k
GConf2-devel x86_64 2.28.0-6.el6 @anaconda-CentOS-201207061011.x86_64/6.3
769 k
NetworkManager x86_64 1:0.8.1-107.el6 @base/6 5.2 M
NetworkManager-gnome x86_64 1:0.8.1-107.el6 @base/6 1.7 M
ORBit2-devel x86_64 2.14.17-5.el6 @base/6 1.2 M
acpid x86_64 1.0.10-3.el6 @base/6 73 k
aic94xx-firmware noarch 30-2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
30 k
alsa-plugins-pulseaudio x86_64 1.1.0-1.el6 @base/6 95 k
at x86_64 3.1.10-48.el6 @base/6 92 k
authconfig-gtk x86_64 6.1.12-23.el6 @base/6 181 k
autofs x86_64 1:5.0.5-122.el6 @base/6 4.4 M
b43-openfwwf noarch 5.2-10.el6 @base/6 31 k
biosdevname x86_64 0.7.1-3.el6 @base/6 54 k
bluez x86_64 4.66-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
968 k
brasero-nautilus x86_64 2.30.3-3.el6 @base/6 46 k
certmonger x86_64 0.77.5-2.el6 @base/6 2.5 M
cifs-utils x86_64 4.8.1-20.el6 @base/6 135 k
compiz x86_64 0.8.2-24.el6 @anaconda-CentOS-201207061011.x86_64/6.3
4.3 M
compiz-gnome x86_64 0.8.2-24.el6 @anaconda-CentOS-201207061011.x86_64/6.3
2.1 M
control-center x86_64 1:2.28.1-40.el6 @base/6 13 M
control-center-extra x86_64 1:2.28.1-40.el6 @base/6 167 k
cpuspeed x86_64 1:1.5-22.el6 @base/6 64 k
crda x86_64 3.13_2015.10.22-3.el6 @base/6 50 k
cronie x86_64 1.4.4-15.el6_7.1 @updates/6 174 k
cronie-anacron x86_64 1.4.4-15.el6_7.1 @updates/6 43 k
crontabs noarch 1.10-33.el6 @anaconda-CentOS-201207061011.x86_64/6.3
2.4 k
cryptsetup-luks x86_64 1.2.0-11.el6 @base/6 300 k
cryptsetup-luks-libs x86_64 1.2.0-11.el6 @base/6 93 k
cups x86_64 1:1.4.2-74.el6 @base/6 11 M
cyrus-sasl x86_64 2.1.23-15.el6_6.2 @updates/6 130 k
cyrus-sasl-devel x86_64 2.1.23-15.el6_6.2 @updates/6 982 k
desktop-effects x86_64 0.8.4-7.el6 @anaconda-CentOS-201207061011.x86_64/6.3
232 k
device-mapper x86_64 1.02.117-7.el6 @base/6 270 k
device-mapper-event x86_64 1.02.117-7.el6 @base/6 43 k
device-mapper-event-libs x86_64 1.02.117-7.el6 @base/6 26 k
device-mapper-libs x86_64 1.02.117-7.el6 @base/6 361 k
dhclient x86_64 12:4.1.1-51.P1.el6.centos @base/6 616 k
dmraid x86_64 1.0.0.rc16-11.el6 @anaconda-CentOS-201207061011.x86_64/6.3
331 k
dmraid-events x86_64 1.0.0.rc16-11.el6 @anaconda-CentOS-201207061011.x86_64/6.3
8.8 k
dnsmasq x86_64 2.48-17.el6 @base/6 293 k
docker-io x86_64 1.7.1-2.el6 @epel/6 19 M
dracut noarch 004-409.el6_8.2 @updates/6 257 k
dracut-kernel noarch 004-409.el6_8.2 @updates/6 202
ebtables x86_64 2.0.9-6.el6 @anaconda-CentOS-201207061011.x86_64/6.3
255 k
eclipse-callgraph x86_64 0.6.1-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
261 k
eclipse-oprofile x86_64 0.6.1-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.7 M
eclipse-rpm-editor x86_64 0.5.0-2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.4 M
eclipse-subclipse x86_64 1.6.5-6.el6 @anaconda-CentOS-201207061011.x86_64/6.3
4.5 M
eclipse-svnkit x86_64 1.3.0-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
42 k
emacs x86_64 1:23.1-28.el6 @base/6 11 M
emacs-common x86_64 1:23.1-28.el6 @base/6 58 M
eog x86_64 2.28.2-4.el6 @anaconda-CentOS-201207061011.x86_64/6.3
5.1 M
epel-release noarch 6-8 @extras/6 22 k
evince x86_64 2.28.2-19.el6 @base/6 3.6 M
evolution-data-server-devel x86_64 2.32.3-23.el6 @base/6 779 k
fakeroot x86_64 1.12.2-22.2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
170 k
file-roller x86_64 2.28.2-7.el6 @base/6 4.6 M
foomatic x86_64 4.0.4-5.el6_7 @updates/6 744 k
foomatic-db noarch 4.0-7.20091126.el6 @anaconda-CentOS-201207061011.x86_64/6.3
8.6 M
foomatic-db-ppds noarch 4.0-7.20091126.el6 @anaconda-CentOS-201207061011.x86_64/6.3
24 M
fuse x86_64 2.8.3-5.el6 @base/6 192 k
gcalctool x86_64 5.28.2-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
7.3 M
gdm x86_64 1:2.30.4-64.el6 @base/6 4.6 M
gdm-plugin-fingerprint x86_64 1:2.30.4-64.el6 @base/6 79 k
gdm-user-switch-applet x86_64 1:2.30.4-64.el6 @base/6 123 k
gedit x86_64 1:2.28.4-4.el6 @base/6 14 M
git x86_64 1.7.1-9.el6_9 @updates/6 15 M
glx-utils x86_64 11.0.7-4.el6 @base/6 50 k
gnome-applets x86_64 1:2.28.0-7.el6.centos @anaconda-CentOS-201207061011.x86_64/6.3
15 M
gnome-bluetooth x86_64 2.28.6-8.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.5 M
gnome-desktop-devel x86_64 2.28.2-11.el6.centos @base/6 409 k
gnome-disk-utility x86_64 2.30.1-3.el6 @base/6 455 k
gnome-disk-utility-libs x86_64 2.30.1-3.el6 @base/6 6.1 M
gnome-disk-utility-ui-libs x86_64 2.30.1-3.el6 @base/6 305 k
gnome-keyring-devel x86_64 2.28.2-8.el6_3 @updates/6 1.2 M
gnome-packagekit x86_64 2.28.3-9.el6 @base/6 7.9 M
gnome-panel x86_64 2.30.2-16.el6 @base/6 10 M
gnome-power-manager x86_64 2.28.3-7.el6_4 @base/6 7.3 M
gnome-session x86_64 2.28.0-22.el6 @base/6 1.8 M
gnome-session-xsession x86_64 2.28.0-22.el6 @base/6 5.9 k
gnome-settings-daemon x86_64 2.28.2-35.el6 @base/6 2.9 M
gnome-system-monitor x86_64 2.28.0-11.el6 @anaconda-CentOS-201207061011.x86_64/6.3
4.1 M
gnome-terminal x86_64 2.31.3-11.el6_6 @updates/6 7.4 M
gnome-user-docs noarch 2.28.0-4.el6 @anaconda-CentOS-201207061011.x86_64/6.3
32 M
gnome-user-share x86_64 2.28.2-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.1 M
gnome-utils x86_64 1:2.28.1-10.el6 @anaconda-CentOS-201207061011.x86_64/6.3
11 M
gnome-vfs2-devel x86_64 2.24.2-8.el6 @base/6 2.1 M
gnome-vfs2-smb x86_64 2.24.2-8.el6 @base/6 32 k
gok x86_64 2.28.1-5.el6 @anaconda-CentOS-201207061011.x86_64/6.3
9.0 M
gpfs.base x86_64 3.5.0-13 installed 37 M
gpfs.gpl noarch 3.5.0-13 installed 2.2 M
gpfs.gplbin-2.6.32-504.12.2.el6.x86_64
x86_64 3.5.0-13 installed 6.3 M
gpfs.gplbin-2.6.32-573.22.1.el6.x86_64
x86_64 3.5.0-13 installed 6.3 M
gpfs.gplbin-2.6.32-642.1.1.el6.x86_64
x86_64 3.5.0-13 installed 6.3 M
gthumb x86_64 2.10.11-8.el6 @anaconda-CentOS-201207061011.x86_64/6.3
7.4 M
gtk-doc noarch 1.11-5.1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
540 k
gucharmap x86_64 2.28.2-2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
6.2 M
gutenprint-cups x86_64 5.2.5-2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
539 k
gvfs x86_64 1.4.3-26.el6 @base/6 4.7 M
gvfs-afc x86_64 1.4.3-26.el6 @base/6 198 k
gvfs-archive x86_64 1.4.3-26.el6 @base/6 141 k
gvfs-devel x86_64 1.4.3-26.el6 @base/6 5.6 k
gvfs-fuse x86_64 1.4.3-26.el6 @base/6 32 k
gvfs-gphoto2 x86_64 1.4.3-26.el6 @base/6 219 k
gvfs-obexftp x86_64 1.4.3-26.el6 @base/6 159 k
gvfs-smb x86_64 1.4.3-26.el6 @base/6 303 k
hal x86_64 0.5.14-14.el6 @base/6 1.2 M
hal-devel x86_64 0.5.14-14.el6 @base/6 48 k
hal-info noarch 20090716-5.el6 @base/6 311 k
hpijs x86_64 1:3.14.6-3.el6 @base/6 9.2 M
hplip-common x86_64 3.14.6-3.el6 @base/6 1.0 M
hplip-libs x86_64 3.14.6-3.el6 @base/6 343 k
httpd x86_64 2.2.15-53.el6.centos @base/6 3.0 M
ibus-qt x86_64 1.3.0-2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
457 k
initscripts x86_64 9.03.61-1.0.6.el6 @ol6_latest 5.5 M
ipa-client x86_64 3.0.0-50.el6.centos.1 @base/6 312 k
ipa-python x86_64 3.0.0-50.el6.centos.1 @base/6 4.6 M
iproute x86_64 2.6.32-54.el6 @base/6 951 k
iptables x86_64 1.4.7-16.el6 @base/6 841 k
iptables-ipv6 x86_64 1.4.7-16.el6 @base/6 205 k
iputils x86_64 20071127-21.el6 @base/6 290 k
iscsi-initiator-utils x86_64 6.2.0.873-21.el6 @base/6 2.5 M
kbd x86_64 1.15-11.el6 @anaconda-CentOS-201207061011.x86_64/6.3
969 k
kexec-tools x86_64 2.0.0-300.el6 @base/6 872 k
kpartx x86_64 0.4.9-93.el6 @base/6 33 k
libacl-devel x86_64 2.2.49-6.el6 @anaconda-CentOS-201207061011.x86_64/6.3
167 k
libbonobo-devel x86_64 2.24.2-5.el6 @anaconda-CentOS-201207061011.x86_64/6.3
2.2 M
libbonoboui-devel x86_64 2.24.2-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.1 M
libcanberra-devel x86_64 0.22-3.el6 @base/6 141 k
libcgroup x86_64 0.40.rc1-17.el6_7 @updates/6 331 k
libcgroup-devel x86_64 0.40.rc1-17.el6_7 @updates/6 89 k
libdrm x86_64 2.4.65-2.el6 @base/6 300 k
libdrm-devel x86_64 2.4.65-2.el6 @base/6 392 k
libgdata-devel x86_64 0.6.4-2.el6 @base/6 3.5 M
libgnome-devel x86_64 2.28.0-11.el6 @anaconda-CentOS-201207061011.x86_64/6.3
564 k
libgnomecanvas-devel x86_64 2.26.0-4.el6 @anaconda-CentOS-201207061011.x86_64/6.3
530 k
libgnomeui-devel x86_64 2.24.1-4.el6 @anaconda-CentOS-201207061011.x86_64/6.3
3.0 M
libgpod x86_64 0.7.2-6.el6 @anaconda-CentOS-201207061011.x86_64/6.3
714 k
libgweather-devel x86_64 2.28.0-5.el6 @anaconda-CentOS-201207061011.x86_64/6.3
274 k
libmtp x86_64 1.0.1-2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
695 k
libsane-hpaio x86_64 3.14.6-3.el6 @base/6 148 k
libsmbclient x86_64 3.6.23-35.el6_8 @updates/6 5.9 M
libvirt x86_64 0.10.2-60.el6 @base/6 5.8 M
libvirt-client x86_64 0.10.2-60.el6 @base/6 15 M
libvirt-devel x86_64 0.10.2-60.el6 @base/6 5.0 M
libvirt-java noarch 0.4.9-1.el6 @base/6 73 k
libvirt-java-devel noarch 0.4.9-1.el6 @base/6 15 k
libvirt-python x86_64 0.10.2-60.el6 @base/6 1.5 M
lua-lxc x86_64 1.0.11-1.el6 @epel/6 25 k
lvm2 x86_64 2.02.143-7.el6 @base/6 2.1 M
lvm2-libs x86_64 2.02.143-7.el6 @base/6 2.5 M
lxc x86_64 1.0.11-1.el6 @epel/6 264 k
lxc-libs x86_64 1.0.11-1.el6 @epel/6 606 k
mdadm x86_64 3.3.4-1.el6 @base/6 804 k
media-player-info noarch 6-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
50 k
mesa-dri-drivers x86_64 11.0.7-4.el6 @base/6 13 M
mesa-dri1-drivers x86_64 7.11-8.el6 @base/6 13 M
mesa-libEGL x86_64 11.0.7-4.el6 @base/6 135 k
mesa-libGL x86_64 11.0.7-4.el6 @base/6 545 k
mesa-libGL-devel x86_64 11.0.7-4.el6 @base/6 1.6 M
mesa-libGLU x86_64 11.0.7-4.el6 @base/6 505 k
mesa-libGLU-devel x86_64 11.0.7-4.el6 @base/6 81 k
mesa-libGLw x86_64 6.5.1-10.el6 @anaconda-CentOS-201207061011.x86_64/6.3
27 k
mesa-libGLw-devel x86_64 6.5.1-10.el6 @anaconda-CentOS-201207061011.x86_64/6.3
15 k
mesa-libgbm x86_64 11.0.7-4.el6 @base/6 71 k
mesa-libxatracker x86_64 11.0.7-4.el6 @base/6 1.6 M
metacity x86_64 2.28.0-23.el6 @anaconda-CentOS-201207061011.x86_64/6.3
7.5 M
microcode_ctl x86_64 1:1.17-21.el6 @base/6 2.0 M
nautilus x86_64 2.28.4-25.el6 @base/6 17 M
nautilus-extensions x86_64 2.28.4-25.el6 @base/6 35 k
nautilus-open-terminal x86_64 0.17-4.el6 @anaconda-CentOS-201207061011.x86_64/6.3
202 k
nautilus-sendto x86_64 2.28.2-4.el6 @base/6 612 k
net-snmp x86_64 1:5.5-57.el6 @base/6 816 k
nfs-utils x86_64 1:1.2.3-70.el6 @base/6 1.0 M
nfs-utils-lib x86_64 1.1.5-11.el6 @base/6 154 k
ntp x86_64 4.2.6p5-10.el6.centos.1 @updates/6 1.6 M
ntpdate x86_64 4.2.6p5-10.el6.centos.1 @updates/6 123 k
numad x86_64 0.5-12.20150602git.el6 @base/6 65 k
oddjob x86_64 0.30-6.el6 @base/6 138 k
oddjob-mkhomedir x86_64 0.30-6.el6 @base/6 51 k
openldap-devel x86_64 2.4.40-12.el6 @base/6 5.2 M
openssh x86_64 5.3p1-118.1.el6_8 @updates/6 769 k
openssh-askpass x86_64 5.3p1-118.1.el6_8 @updates/6 13 k
openssh-clients x86_64 5.3p1-118.1.el6_8 @updates/6 1.3 M
openssh-server x86_64 5.3p1-118.1.el6_8 @updates/6 702 k
orca x86_64 2.28.2-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
8.7 M
parted x86_64 2.1-29.el6 @base/6 2.2 M
pcmciautils x86_64 015-4.2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
103 k
perl-Git noarch 1.7.1-9.el6_9 @updates/6 35 k
phonon-backend-gstreamer x86_64 1:4.6.2-28.el6_5 @base/6 241 k
plymouth x86_64 0.8.3-29.0.1.el6 @ol6_latest 189 k
plymouth-gdm-hooks x86_64 0.8.3-29.0.1.el6 @ol6_latest 171
plymouth-utils x86_64 0.8.3-29.0.1.el6 @ol6_latest 15 k
pm-utils x86_64 1.2.5-11.el6 @base/6 254 k
policycoreutils x86_64 2.0.83-29.el6 @base/6 3.4 M
polkit-devel x86_64 0.96-11.el6 @base/6 145 k
polkit-docs x86_64 0.96-11.el6 @base/6 1.1 M
postfix x86_64 2:2.6.6-6.el6_7.1 @updates/6 9.7 M
postgresql x86_64 8.4.20-6.el6 @base/6 14 M
postgresql-devel x86_64 8.4.20-6.el6 @base/6 3.4 M
prelink x86_64 0.4.6-3.1.el6_4 @base/6 1.9 M
printer-filters noarch 1.1-4.1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
0.0
ptouch-driver x86_64 1.3-2.1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
50 k
pulseaudio x86_64 0.9.21-24.el6 @base/6 1.9 M
pulseaudio-gdm-hooks x86_64 0.9.21-24.el6 @base/6 385
pulseaudio-module-bluetooth x86_64 0.9.21-24.el6 @base/6 162 k
pulseaudio-module-gconf x86_64 0.9.21-24.el6 @base/6 19 k
pulseaudio-module-x11 x86_64 0.9.21-24.el6 @base/6 46 k
python-iwlib x86_64 0.1-1.2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
27 k
python-virtinst noarch 0.600.0-29.el6 @base/6 2.0 M
qemu-kvm x86_64 2:0.12.1.2-2.491.el6_8.1 @updates/6 4.6 M
qt-devel x86_64 1:4.6.2-28.el6_5 @base/6 29 M
qt-x11 x86_64 1:4.6.2-28.el6_5 @base/6 30 M
qt3-devel x86_64 3.3.8b-30.el6 @anaconda-CentOS-201207061011.x86_64/6.3
38 M
quota x86_64 1:3.17-23.el6 @base/6 1.0 M
radvd x86_64 1.6-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
159 k
rarian x86_64 0.8.1-5.1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
333 k
rarian-compat x86_64 0.8.1-5.1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
241 k
readahead x86_64 1:1.5.6-2.el6 @base/6 113 k
rear x86_64 1.17.2-4.el6 @base/6 908 k
redhat-lsb x86_64 4.0-7.el6.centos @base/6 0.0
redhat-lsb-compat x86_64 4.0-7.el6.centos @base/6 0.0
redhat-lsb-core x86_64 4.0-7.el6.centos @base/6 22 k
redhat-lsb-graphics x86_64 4.0-7.el6.centos @base/6 0.0
redhat-lsb-printing x86_64 4.0-7.el6.centos @base/6 0.0
rhythmbox x86_64 0.12.8-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
12 M
rng-tools x86_64 5-2.el6_7 @updates/6 62 k
rp-pppoe x86_64 3.10-16.el6 @base/6 237 k
rpmdevtools noarch 7.5-2.el6 @base/6 216 k
rsyslog x86_64 5.8.10-10.el6_6 @updates/6 2.1 M
samba-client x86_64 3.6.23-35.el6_8 @updates/6 40 M
samba-common x86_64 3.6.23-35.el6_8 @updates/6 36 M
samba-winbind x86_64 3.6.23-35.el6_8 @updates/6 7.7 M
samba-winbind-clients x86_64 3.6.23-35.el6_8 @updates/6 6.5 M
sane-backends x86_64 1.0.21-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
4.4 M
sane-backends-libs x86_64 1.0.21-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
7.6 M
sane-backends-libs-gphoto2 x86_64 1.0.21-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
40 k
sane-frontends x86_64 1.0.14-9.2.el6 @anaconda-CentOS-201207061011.x86_64/6.3
132 k
seahorse x86_64 2.28.1-4.el6 @anaconda-CentOS-201207061011.x86_64/6.3
6.7 M
setuptool x86_64 1.19.9-4.el6 @base/6 138 k
smartmontools x86_64 1:5.43-1.el6 @base/6 1.4 M
sound-juicer x86_64 2.28.1-6.el6 @anaconda-CentOS-201207061011.x86_64/6.3
3.4 M
spice-vdagent x86_64 0.14.0-11.el6 @base/6 140 k
sssd x86_64 1.13.3-22.el6 @base/6 34 k
sssd-ad x86_64 1.13.3-22.el6 @base/6 289 k
sssd-common x86_64 1.13.3-22.el6 @base/6 3.1 M
sssd-common-pac x86_64 1.13.3-22.el6 @base/6 147 k
sssd-ipa x86_64 1.13.3-22.el6 @base/6 525 k
sssd-krb5 x86_64 1.13.3-22.el6 @base/6 74 k
sssd-krb5-common x86_64 1.13.3-22.el6 @base/6 215 k
sssd-ldap x86_64 1.13.3-22.el6 @base/6 146 k
sssd-proxy x86_64 1.13.3-22.el6 @base/6 117 k
subversion x86_64 1.6.11-15.el6_7 @updates/6 12 M
subversion-javahl x86_64 1.6.11-15.el6_7 @updates/6 327 k
svnkit x86_64 1.3.0-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.9 M
sysstat x86_64 9.0.4-31.el6 @base/6 826 k
system-config-date noarch 1.9.60-2.el6.centos @base/6 3.6 M
system-config-date-docs noarch 1.0.11-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.5 M
system-config-firewall noarch 1.2.27-7.2.el6_6 @updates/6 578 k
system-config-firewall-base noarch 1.2.27-7.2.el6_6 @updates/6 2.4 M
system-config-firewall-tui noarch 1.2.27-7.2.el6_6 @updates/6 67 k
system-config-kdump noarch 2.0.5-18.el6 @base/6 1.3 M
system-config-keyboard x86_64 1.3.1-6.el6 @base/6 46 k
system-config-network-tui noarch 1.6.0.el6.3-4.el6 @base/6 4.8 M
system-config-printer x86_64 1.1.16-25.el6 @base/6 1.9 M
system-config-printer-libs x86_64 1.1.16-25.el6 @base/6 3.4 M
system-config-printer-udev x86_64 1.1.16-25.el6 @base/6 29 k
system-config-services noarch 0.99.45-1.el6.3 @anaconda-CentOS-201207061011.x86_64/6.3
685 k
system-config-services-docs noarch 1.1.8-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
963 k
system-config-users noarch 1.2.106-8.el6 @base/6 1.7 M
system-config-users-docs noarch 1.0.8-2.el6 @base/6 4.3 M
system-setup-keyboard x86_64 0.7-4.el6 @anaconda-CentOS-201207061011.x86_64/6.3
14 k
systemtap x86_64 2.9-7.el6 @base/6 30 k
systemtap-client x86_64 2.9-7.el6 @base/6 12 M
totem x86_64 2.28.6-4.el6 @base/6 7.7 M
totem-nautilus x86_64 2.28.6-4.el6 @base/6 193 k
udev x86_64 147-2.73.el6 @base/6 1.2 M
udisks x86_64 1.0.1-9.el6 @base/6 609 k
usermode x86_64 1.102-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
780 k
usermode-gtk x86_64 1.102-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
203 k
util-linux-ng x86_64 2.17.2-12.24.el6 @base/6 5.8 M
virt-manager x86_64 0.9.0-31.el6 @base/6 5.6 M
virt-top x86_64 1.0.4-3.15.el6 @base/6 1.2 M
virt-viewer x86_64 2.0-14.el6 @base/6 1.2 M
virt-what x86_64 1.11-1.2.el6 @base/6 36 k
wacomexpresskeys x86_64 0.4.2-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
149 k
wireless-tools x86_64 1:29-6.el6 @base/6 207 k
wpa_supplicant x86_64 1:0.7.3-8.el6 @base/6 942 k
xmlto x86_64 0.0.23-3.el6 @anaconda-CentOS-201207061011.x86_64/6.3
97 k
xorg-x11-drivers x86_64 7.3-13.4.el6 @base/6 0.0
xorg-x11-drv-acecad x86_64 1.5.0-8.el6 @base/6 18 k
xorg-x11-drv-aiptek x86_64 1.4.1-6.el6 @base/6 27 k
xorg-x11-drv-apm x86_64 1.2.5-11.el6 @base/6 37 k
xorg-x11-drv-ast x86_64 1.1.5-1.el6 @base/6 117 k
xorg-x11-drv-ati x86_64 7.6.1-2.el6 @base/6 538 k
xorg-x11-drv-cirrus x86_64 1.5.3-1.el6 @base/6 74 k
xorg-x11-drv-dummy x86_64 0.3.6-16.el6 @base/6 15 k
xorg-x11-drv-elographics x86_64 1.4.1-4.el6 @base/6 18 k
xorg-x11-drv-evdev x86_64 2.9.2-1.el6 @base/6 65 k
xorg-x11-drv-fbdev x86_64 0.4.3-17.el6 @base/6 22 k
xorg-x11-drv-fpit x86_64 1.4.0-7.el6 @base/6 17 k
xorg-x11-drv-glint x86_64 1.2.8-11.el6 @base/6 134 k
xorg-x11-drv-hyperpen x86_64 1.4.1-6.el6 @base/6 18 k
xorg-x11-drv-i128 x86_64 1.3.6-11.el6 @base/6 54 k
xorg-x11-drv-i740 x86_64 1.3.4-12.el6 @base/6 46 k
xorg-x11-drv-intel x86_64 2.99.917-0.4.20151111.el6 @base/6 1.9 M
xorg-x11-drv-keyboard x86_64 1.8.1-1.el6 @base/6 25 k
xorg-x11-drv-mach64 x86_64 6.9.4-10.el6 @base/6 165 k
xorg-x11-drv-mga x86_64 1.6.3-9.el6 @base/6 140 k
xorg-x11-drv-mouse x86_64 1.9.1-1.el6 @base/6 52 k
xorg-x11-drv-mutouch x86_64 1.3.0-6.el6 @base/6 20 k
xorg-x11-drv-nouveau x86_64 1:1.0.12-1.el6 @base/6 203 k
xorg-x11-drv-nv x86_64 2.1.20-6.el6 @base/6 174 k
xorg-x11-drv-openchrome x86_64 0.3.3-7.el6 @base/6 498 k
xorg-x11-drv-penmount x86_64 1.5.0-6.el6 @base/6 16 k
xorg-x11-drv-qxl x86_64 0.1.1-19.el6 @base/6 188 k
xorg-x11-drv-r128 x86_64 6.10.0-1.el6 @base/6 78 k
xorg-x11-drv-rendition x86_64 4.2.6-1.el6 @base/6 39 k
xorg-x11-drv-s3virge x86_64 1.10.7-1.el6 @base/6 72 k
xorg-x11-drv-savage x86_64 2.3.7-3.el6 @base/6 109 k
xorg-x11-drv-siliconmotion x86_64 1.7.8-1.el6 @base/6 112 k
xorg-x11-drv-sis x86_64 0.10.8-1.el6 @base/6 530 k
xorg-x11-drv-sisusb x86_64 0.9.6-11.el6 @base/6 74 k
xorg-x11-drv-synaptics x86_64 1.8.3-1.el6 @base/6 118 k
xorg-x11-drv-tdfx x86_64 1.4.6-1.el6 @base/6 54 k
xorg-x11-drv-trident x86_64 1.3.6-11.el6 @base/6 138 k
xorg-x11-drv-v4l x86_64 0.2.0-37.el6 @base/6 18 k
xorg-x11-drv-vesa x86_64 2.3.4-1.el6 @base/6 26 k
xorg-x11-drv-vmmouse x86_64 13.1.0-1.el6 @base/6 24 k
xorg-x11-drv-vmware x86_64 13.1.0-2.el6 @base/6 154 k
xorg-x11-drv-void x86_64 1.4.1-1.el6 @base/6 11 k
xorg-x11-drv-voodoo x86_64 1.2.5-11.el6 @base/6 23 k
xorg-x11-drv-wacom x86_64 0.32.0-1.el6 @base/6 965 k
xorg-x11-drv-xgi x86_64 1.6.1-1.el6 @base/6 243 k
xorg-x11-server-Xorg x86_64 1.17.4-9.el6.centos @base/6 3.6 M
xsane x86_64 0.997-8.el6 @anaconda-CentOS-201207061011.x86_64/6.3
1.9 M
xsane-gimp x86_64 0.997-8.el6 @anaconda-CentOS-201207061011.x86_64/6.3
645 k
yelp x86_64 2.28.1-17.el6_3 @base/6 3.6 M
yp-tools x86_64 2.9-12.el6 @anaconda-CentOS-201207061011.x86_64/6.3
167 k
ypbind x86_64 3:1.20.4-33.el6 @base/6 93 k
zenity x86_64 2.28.0-1.el6 @anaconda-CentOS-201207061011.x86_64/6.3
4.1 M

Transaction Summary

Remove 344 Package(s)

Installed size: 980 M
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction

Erasing : xorg-x11-drivers-7.3-13.4.el6.x86_64 1/344

Erasing : ipa-client-3.0.0-50.el6.centos.1.x86_64 2/344

Erasing : sssd-1.13.3-22.el6.x86_64 3/344

Erasing : rear-1.17.2-4.el6.x86_64 4/344
warning: /etc/rear/local.conf saved as /etc/rear/local.conf.rpmsave

Erasing : sssd-ipa-1.13.3-22.el6.x86_64 5/344

Erasing : sssd-ad-1.13.3-22.el6.x86_64 6/344

Erasing : evolution-data-server-devel-2.32.3-23.el6.x86_64 7/344

Erasing : sssd-ldap-1.13.3-22.el6.x86_64 8/344

Erasing : sssd-krb5-1.13.3-22.el6.x86_64 9/344

Erasing : system-config-users-1.2.106-8.el6.noarch 10/344

Erasing : system-config-users-docs-1.0.8-2.el6.noarch 11/344

Erasing : system-config-date-1.9.60-2.el6.centos.noarch 12/344

Erasing : system-config-date-docs-1.0.11-1.el6.noarch 13/344

Erasing : system-config-kdump-2.0.5-18.el6.noarch 14/344

Erasing : virt-manager-0.9.0-31.el6.x86_64 15/344

Erasing : 1:hpijs-3.14.6-3.el6.x86_64 16/344

Erasing : gnome-desktop-devel-2.28.2-11.el6.centos.x86_64 17/344

Erasing : libgnomeui-devel-2.24.1-4.el6.x86_64 18/344

Erasing : system-config-network-tui-1.6.0.el6.3-4.el6.noarch 19/344

Erasing : libgweather-devel-2.28.0-5.el6.x86_64 20/344

Erasing : system-config-services-docs-1.1.8-1.el6.noarch 21/344

Erasing : system-config-services-0.99.45-1.el6.3.noarch 22/344

Erasing : polkit-devel-0.96-11.el6.x86_64 23/344

Erasing : polkit-docs-0.96-11.el6.x86_64 24/344

Erasing : eclipse-subclipse-1.6.5-6.el6.x86_64 25/344

Erasing : libsane-hpaio-3.14.6-3.el6.x86_64 26/344

Erasing : hplip-libs-3.14.6-3.el6.x86_64 27/344

Erasing : system-config-firewall-1.2.27-7.2.el6_6.noarch 28/344

Erasing : mesa-libGLw-devel-6.5.1-10.el6.x86_64 29/344

Erasing : system-config-firewall-tui-1.2.27-7.2.el6_6.noarch 30/344

Erasing : system-config-firewall-base-1.2.27-7.2.el6_6.noarch 31/344

Erasing : hplip-common-3.14.6-3.el6.x86_64 32/344

Erasing : eclipse-svnkit-1.3.0-3.el6.x86_64 33/344

Erasing : svnkit-1.3.0-3.el6.x86_64 34/344

Erasing : gnome-keyring-devel-2.28.2-8.el6_3.x86_64 35/344

Erasing : python-virtinst-0.600.0-29.el6.noarch 36/344

Erasing : sssd-krb5-common-1.13.3-22.el6.x86_64 37/344

Erasing : libgdata-devel-0.6.4-2.el6.x86_64 38/344

Erasing : sssd-common-pac-1.13.3-22.el6.x86_64 39/344

Erasing : sssd-proxy-1.13.3-22.el6.x86_64 40/344

Erasing : sssd-common-1.13.3-22.el6.x86_64 41/344

Erasing : ipa-python-3.0.0-50.el6.centos.1.x86_64 42/344

Erasing : redhat-lsb-4.0-7.el6.centos.x86_64 43/344

Erasing : redhat-lsb-compat-4.0-7.el6.centos.x86_64 44/344

Erasing : redhat-lsb-graphics-4.0-7.el6.centos.x86_64 45/344

Erasing : redhat-lsb-printing-4.0-7.el6.centos.x86_64 46/344

Erasing : redhat-lsb-core-4.0-7.el6.centos.x86_64 47/344
/var/tmp/rpm-tmp.JrF1UO: line 1: lsb_release: command not found

Erasing : git-1.7.1-9.el6_9.x86_64 48/344

Erasing : perl-Git-1.7.1-9.el6_9.noarch 49/344

Erasing : b43-openfwwf-5.2-10.el6.noarch 50/344
make[1]: Entering directory /usr/lpp/mmfs/src' rm -rf /usr/lpp/mmfs/src/include /usr/lpp/mmfs/src/bin /usr/lpp/mmfs/src/lib mkdir /usr/lpp/mmfs/src/include /usr/lpp/mmfs/src/bin /usr/lpp/mmfs/src/lib rm -f //usr/lpp/mmfs/src/gpl-linux/gpl_kernel.tmp.ver cleaning (/usr/lpp/mmfs/src/ibm-kxi) make[2]: Entering directory /usr/lpp/mmfs/src/ibm-kxi'
rm -f ibm_kxi.trclst
rm -f install.he;
for i in cxiTypes.h cxiSystem.h cxi2gpfs.h cxiVFSStats.h cxiCred.h cxiIOBuffer.h cxiSharedSeg.h cxiMode.h Trace.h cxiMmap.h cxiAtomic.h cxiTSFattr.h cxiAclUser.h cxiLinkList.h cxiDmapi.h Dynassert.h LockNames.h lxtrace.h cxiGcryptoDefs.h DirIds.h; do
(set -x; rm -f -r /usr/lpp/mmfs/src/include/cxi/$i) done

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiTypes.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiSystem.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxi2gpfs.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiVFSStats.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiCred.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiIOBuffer.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiSharedSeg.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiMode.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/Trace.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiMmap.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiAtomic.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiTSFattr.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiAclUser.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiLinkList.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiDmapi.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/Dynassert.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/LockNames.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/lxtrace.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/cxiGcryptoDefs.h

  • rm -f -r /usr/lpp/mmfs/src/include/cxi/DirIds.h
    make[2]: Leaving directory /usr/lpp/mmfs/src/ibm-kxi' cleaning (/usr/lpp/mmfs/src/ibm-linux) make[2]: Entering directory /usr/lpp/mmfs/src/ibm-linux'
    rm -f install.he;
    for i in cxiTypes-plat.h cxiSystem-plat.h cxiIOBuffer-plat.h cxiSharedSeg-plat.h cxiMode-plat.h Trace-plat.h cxiAtomic-plat.h cxiMmap-plat.h cxiVFSStats-plat.h cxiCred-plat.h cxiDmapi-plat.h; do
    (set -x; rm -rf /usr/lpp/mmfs/src/include/cxi/$i) done

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiTypes-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiSystem-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiIOBuffer-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiSharedSeg-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiMode-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/Trace-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiAtomic-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiMmap-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiVFSStats-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiCred-plat.h

  • rm -rf /usr/lpp/mmfs/src/include/cxi/cxiDmapi-plat.h
    make[2]: Leaving directory /usr/lpp/mmfs/src/ibm-linux' cleaning (/usr/lpp/mmfs/src/gpl-linux) make[2]: Entering directory /usr/lpp/mmfs/src/gpl-linux'
    Pre-kbuild step 1...
    /usr/bin/make -C /lib/modules/2.6.32-642.1.1.el6.x86_64/build M=/usr/lpp/mmfs/src/gpl-linux clean
    make[3]: Entering directory /usr/src/kernels/2.6.32-642.1.1.el6.x86_64' CLEAN /usr/lpp/mmfs/src/gpl-linux CLEAN /usr/lpp/mmfs/src/gpl-linux/.tmp_versions CLEAN /usr/lpp/mmfs/src/gpl-linux/Module.symvers /usr/lpp/mmfs/src/gpl-linux/modules.order make[3]: Leaving directory /usr/src/kernels/2.6.32-642.1.1.el6.x86_64'
    rm -f -f /lib/modules/cat //usr/lpp/mmfs/src/gpl-linux/gpl_kernel.tmp.ver/extra/tracedev.ko
    rm -f -f /lib/modules/cat //usr/lpp/mmfs/src/gpl-linux/gpl_kernel.tmp.ver/extra/mmfslinux.ko
    rm -f -f /lib/modules/cat //usr/lpp/mmfs/src/gpl-linux/gpl_kernel.tmp.ver/extra/mmfs26.ko
    rm -f -f /usr/lpp/mmfs/src/../bin/lxtrace-cat //usr/lpp/mmfs/src/gpl-linux/gpl_kernel.tmp.ver
    rm -f -f /usr/lpp/mmfs/src/../bin/kdump-cat //usr/lpp/mmfs/src/gpl-linux/gpl_kernel.tmp.ver
    rm -f -f .o .depends ..cmd *.ko *.a *.mod.c core *_shipped *map *mod.c.saved *.symvers .ko.ver ./.ver install.he
    rm -f -rf .tmp_versions kdump-kern-dwarfs.c
    rm -f -f gpl-linux.trclst kdump lxtrace
    rm -f -rf usr
    make[2]: Leaving directory /usr/lpp/mmfs/src/gpl-linux' make[1]: Leaving directory /usr/lpp/mmfs/src'

    Erasing : gpfs.gpl-3.5.0-13.noarch 51/344

    Erasing : printer-filters-1.1-4.1.el6.noarch 52/344
    4039 ? S<Ll 283:31 /usr/lpp/mmfs/bin//mmfsd

    Erasing : gpfs.gplbin-2.6.32-504.12.2.el6.x86_64-3.5.0-13.x86_64 53/344

    Erasing : eclipse-rpm-editor-0.5.0-2.el6.x86_64 54/344

    Erasing : rpmdevtools-7.5-2.el6.noarch 55/344

    Erasing : gvfs-devel-1.4.3-26.el6.x86_64 56/344

    Erasing : eclipse-callgraph-0.6.1-1.el6.x86_64 57/344

    Erasing : systemtap-2.9-7.el6.x86_64 58/344

    Erasing : dracut-kernel-004-409.el6_8.2.noarch 59/344

    Erasing : system-config-keyboard-1.3.1-6.el6.x86_64 60/344

    Erasing : libcanberra-devel-0.22-3.el6.x86_64 61/344

    Erasing : gpfs.gplbin-2.6.32-573.22.1.el6.x86_64-3.5.0-13.x86_64 62/344
    WARNING: Can't read module /lib/modules/2.6.32-642.1.1.el6.x86_64/weak-updates/tracedev.ko: No such file or directory
    WARNING: Can't read module /lib/modules/2.6.32-642.1.1.el6.x86_64/weak-updates/mmfs26.ko: No such file or directory
    WARNING: Can't read module /lib/modules/2.6.32-642.1.1.el6.x86_64/weak-updates/mmfslinux.ko: No such file or directory

    Erasing : libvirt-java-devel-0.4.9-1.el6.noarch 63/344

    Erasing : libvirt-java-0.4.9-1.el6.noarch 64/344

    Erasing : gpfs.gplbin-2.6.32-642.1.1.el6.x86_64-3.5.0-13.x86_64 65/344
    warning: erase unlink of /usr/lpp/mmfs/bin/lxtrace-2.6.32-642.1.1.el6.x86_64 failed: No such file or directory
    warning: erase unlink of /usr/lpp/mmfs/bin/kdump-2.6.32-642.1.1.el6.x86_64 failed: No such file or directory
    warning: erase unlink of /lib/modules/2.6.32-642.1.1.el6.x86_64/extra/tracedev.ko failed: No such file or directory
    warning: erase unlink of /lib/modules/2.6.32-642.1.1.el6.x86_64/extra/mmfslinux.ko failed: No such file or directory
    warning: erase unlink of /lib/modules/2.6.32-642.1.1.el6.x86_64/extra/mmfs26.ko failed: No such file or directory
    WARNING: Can't read module /lib/modules/2.6.32-642.1.1.el6.x86_64/weak-updates/tracedev.ko: No such file or directory
    WARNING: Can't read module /lib/modules/2.6.32-642.1.1.el6.x86_64/weak-updates/mmfs26.ko: No such file or directory
    WARNING: Can't read module /lib/modules/2.6.32-642.1.1.el6.x86_64/weak-updates/mmfslinux.ko: No such file or directory

    Erasing : gpfs.base-3.5.0-13.x86_64 66/344
    warning: erase unlink of /usr/lpp/mmfs/properties/version/General_Parallel_File_System_for_Linux_and_Windows_on_X86_Architecture.3.5.0.swtag failed: No such file or directory

    Erasing : system-config-printer-1.1.16-25.el6.x86_64 67/344

    Erasing : authconfig-gtk-6.1.12-23.el6.x86_64 68/344

    Erasing : aic94xx-firmware-30-2.el6.noarch 69/344

    Erasing : libvirt-devel-0.10.2-60.el6.x86_64 70/344

    Erasing : libacl-devel-2.2.49-6.el6.x86_64 71/344

    Erasing : orca-2.28.2-1.el6.x86_64 72/344

    Erasing : openldap-devel-2.4.40-12.el6.x86_64 73/344

    Erasing : epel-release-6-8.noarch 74/344
    warning: erase unlink of /etc/yum.repos.d/epel.repo failed: No such file or directory
    warning: erase unlink of /etc/yum.repos.d/epel-testing.repo failed: No such file or directory

    Erasing : libcgroup-devel-0.40.rc1-17.el6_7.x86_64 75/344

    Erasing : libvirt-0.10.2-60.el6.x86_64 76/344
    warning: erase unlink of /var/cache/libvirt/qemu failed: No such file or directory

    Erasing : libbonoboui-devel-2.24.2-3.el6.x86_64 77/344

    Erasing : libgnome-devel-2.28.0-11.el6.x86_64 78/344

    Erasing : dmraid-1.0.0.rc16-11.el6.x86_64 79/344

    Erasing : dmraid-events-1.0.0.rc16-11.el6.x86_64 80/344

    Erasing : docker-io-1.7.1-2.el6.x86_64 81/344

    Erasing : gnome-disk-utility-2.30.1-3.el6.x86_64 82/344

    Erasing : compiz-gnome-0.8.2-24.el6.x86_64 83/344

    Erasing : compiz-0.8.2-24.el6.x86_64 84/344

    Erasing : xorg-x11-drv-vmware-13.1.0-2.el6.x86_64 85/344

    Erasing : pulseaudio-module-bluetooth-0.9.21-24.el6.x86_64 86/344

    Erasing : gnome-bluetooth-2.28.6-8.el6.x86_64 87/344

    Erasing : bluez-4.66-1.el6.x86_64 88/344

    Erasing : gnome-power-manager-2.28.3-7.el6_4.x86_64 89/344

    Erasing : rhythmbox-0.12.8-1.el6.x86_64 90/344

    Erasing : gnome-vfs2-devel-2.24.2-8.el6.x86_64 91/344

    Erasing : lvm2-2.02.143-7.el6.x86_64 92/344

    Erasing : lvm2-libs-2.02.143-7.el6.x86_64 93/344

    Erasing : device-mapper-event-1.02.117-7.el6.x86_64 94/344

    Erasing : foomatic-4.0.4-5.el6_7.x86_64 95/344

    Erasing : kexec-tools-2.0.0-300.el6.x86_64 96/344

    Erasing : dracut-004-409.el6_8.2.noarch 97/344

    Erasing : xorg-x11-drv-ati-7.6.1-2.el6.x86_64 98/344

    Erasing : 1:xorg-x11-drv-nouveau-1.0.12-1.el6.x86_64 99/344

    Erasing : xorg-x11-drv-synaptics-1.8.3-1.el6.x86_64 100/344

    Erasing : xorg-x11-drv-intel-2.99.917-0.4.20151111.el6.x86_64 101/344

    Erasing : xorg-x11-drv-openchrome-0.3.3-7.el6.x86_64 102/344

    Erasing : 1:gnome-applets-2.28.0-7.el6.centos.x86_64 103/344

    Erasing : 1:qt-devel-4.6.2-28.el6_5.x86_64 104/344

    Erasing : samba-client-3.6.23-35.el6_8.x86_64 105/344

    Erasing : gnome-user-share-2.28.2-3.el6.x86_64 106/344

    Erasing : gnome-panel-2.30.2-16.el6.x86_64 107/344

    Erasing : libmtp-1.0.1-2.el6.x86_64 108/344

    Erasing : glx-utils-11.0.7-4.el6.x86_64 109/344

    Erasing : desktop-effects-0.8.4-7.el6.x86_64 110/344

    Erasing : lxc-1.0.11-1.el6.x86_64 111/344

    Erasing : nfs-utils-lib-1.1.5-11.el6.x86_64 112/344

    Erasing : 1:nfs-utils-1.2.3-70.el6.x86_64 113/344
    warning: erase unlink of /var/lib/nfs/v4recovery failed: No such file or directory
    warning: erase unlink of /var/lib/nfs/statd/sm.bak failed: No such file or directory
    warning: erase unlink of /var/lib/nfs/statd/sm failed: No such file or directory
    warning: erase unlink of /var/lib/nfs/statd failed: No such file or directory
    warning: erase rmdir of /var/lib/nfs/rpc_pipefs failed: Device or resource busy

    Erasing : numad-0.5-12.20150602git.el6.x86_64 114/344

    Erasing : libvirt-python-0.10.2-60.el6.x86_64 115/344

    Erasing : yelp-2.28.1-17.el6_3.x86_64 116/344

    Erasing : ntp-4.2.6p5-10.el6.centos.1.x86_64 117/344
    warning: /etc/ntp.conf saved as /etc/ntp.conf.rpmsave

    Erasing : yp-tools-2.9-12.el6.x86_64 118/344

    Erasing : 3:ypbind-1.20.4-33.el6.x86_64 119/344
    warning: /etc/yp.conf saved as /etc/yp.conf.rpmsave

    Erasing : totem-nautilus-2.28.6-4.el6.x86_64 120/344

    Erasing : totem-2.28.6-4.el6.x86_64 121/344

    Erasing : gvfs-fuse-1.4.3-26.el6.x86_64 122/344

    Erasing : 1:gedit-2.28.4-4.el6.x86_64 123/344

    Erasing : evince-2.28.2-19.el6.x86_64 124/344

    Erasing : nautilus-open-terminal-0.17-4.el6.x86_64 125/344

    Erasing : wacomexpresskeys-0.4.2-3.el6.x86_64 126/344

    Erasing : qt3-devel-3.3.8b-30.el6.x86_64 127/344

    Erasing : mesa-libGLU-devel-11.0.7-4.el6.x86_64 128/344

    Erasing : mesa-libGL-devel-11.0.7-4.el6.x86_64 129/344

    Erasing : 1:readahead-1.5.6-2.el6.x86_64 130/344

    Erasing : sane-frontends-1.0.14-9.2.el6.x86_64 131/344

    Erasing : openssh-server-5.3p1-118.1.el6_8.x86_64 132/344
    warning: /etc/ssh/sshd_config saved as /etc/ssh/sshd_config.rpmsave

    Erasing : gvfs-smb-1.4.3-26.el6.x86_64 133/344

    Erasing : virt-viewer-2.0-14.el6.x86_64 134/344

    Erasing : gnome-packagekit-2.28.3-9.el6.x86_64 135/344

    Erasing : file-roller-2.28.2-7.el6.x86_64 136/344

    Erasing : libdrm-devel-2.4.65-2.el6.x86_64 137/344

    Erasing : gnome-user-docs-2.28.0-4.el6.noarch 138/344

    Erasing : gnome-session-xsession-2.28.0-22.el6.x86_64 139/344

    Erasing : foomatic-db-4.0-7.20091126.el6.noarch 140/344

    Erasing : foomatic-db-ppds-4.0-7.20091126.el6.noarch 141/344

    Erasing : GConf2-devel-2.28.0-6.el6.x86_64 142/344

    Erasing : hal-devel-0.5.14-14.el6.x86_64 143/344

    Erasing : media-player-info-6-1.el6.noarch 144/344

    Erasing : libbonobo-devel-2.24.2-5.el6.x86_64 145/344

    Erasing : libgnomecanvas-devel-2.26.0-4.el6.x86_64 146/344

    Erasing : ORBit2-devel-2.14.17-5.el6.x86_64 147/344

    Erasing : gtk-doc-1.11-5.1.el6.noarch 148/344

    Erasing : gnome-terminal-2.31.3-11.el6_6.x86_64 149/344

    Erasing : fuse-2.8.3-5.el6.x86_64 150/344

    Erasing : ntpdate-4.2.6p5-10.el6.centos.1.x86_64 151/344

    Erasing : libcgroup-0.40.rc1-17.el6_7.x86_64 152/344

    Erasing : lua-lxc-1.0.11-1.el6.x86_64 153/344

    Erasing : lxc-libs-1.0.11-1.el6.x86_64 154/344

    Erasing : httpd-2.2.15-53.el6.centos.x86_64 155/344

    Erasing : gucharmap-2.28.2-2.el6.x86_64 156/344

    Erasing : kpartx-0.4.9-93.el6.x86_64 157/344

    Erasing : device-mapper-event-libs-1.02.117-7.el6.x86_64 158/344

    Erasing : libgpod-0.7.2-6.el6.x86_64 159/344

    Erasing : gvfs-obexftp-1.4.3-26.el6.x86_64 160/344

    Erasing : mesa-libxatracker-11.0.7-4.el6.x86_64 161/344

    Erasing : gnome-disk-utility-ui-libs-2.30.1-3.el6.x86_64 162/344

    Erasing : ebtables-2.0.9-6.el6.x86_64 163/344

    Erasing : iptables-ipv6-1.4.7-16.el6.x86_64 164/344

    Erasing : iscsi-initiator-utils-6.2.0.873-21.el6.x86_64 165/344

    Erasing : radvd-1.6-1.el6.x86_64 166/344

    Erasing : cyrus-sasl-devel-2.1.23-15.el6_6.2.x86_64 167/344

    Erasing : usermode-gtk-1.102-3.el6.x86_64 168/344

    Erasing : systemtap-client-2.9-7.el6.x86_64 169/344

    Erasing : openssh-clients-5.3p1-118.1.el6_8.x86_64 170/344

    Erasing : fakeroot-1.12.2-22.2.el6.x86_64 171/344

    Erasing : ptouch-driver-1.3-2.1.el6.x86_64 172/344

    Erasing : at-3.1.10-48.el6.x86_64 173/344

    Erasing : subversion-javahl-1.6.11-15.el6_7.x86_64 174/344

    Erasing : subversion-1.6.11-15.el6_7.x86_64 175/344

    Erasing : mesa-libGLw-6.5.1-10.el6.x86_64 176/344

    Erasing : python-iwlib-0.1-1.2.el6.x86_64 177/344

    Erasing : 1:wireless-tools-29-6.el6.x86_64 178/344

    Erasing : crda-3.13_2015.10.22-3.el6.x86_64 179/344

    Erasing : certmonger-0.77.5-2.el6.x86_64 180/344

    Erasing : oddjob-mkhomedir-0.30-6.el6.x86_64 181/344

    Erasing : oddjob-0.30-6.el6.x86_64 182/344

    Erasing : 1:autofs-5.0.5-122.el6.x86_64 183/344
    warning: /etc/auto.master saved as /etc/auto.master.rpmsave

    Erasing : xorg-x11-drv-acecad-1.5.0-8.el6.x86_64 184/344

    Erasing : xorg-x11-drv-aiptek-1.4.1-6.el6.x86_64 185/344

    Erasing : xorg-x11-drv-apm-1.2.5-11.el6.x86_64 186/344

    Erasing : xorg-x11-drv-ast-1.1.5-1.el6.x86_64 187/344

    Erasing : xorg-x11-drv-cirrus-1.5.3-1.el6.x86_64 188/344

    Erasing : xorg-x11-drv-dummy-0.3.6-16.el6.x86_64 189/344

    Erasing : xorg-x11-drv-elographics-1.4.1-4.el6.x86_64 190/344

    Erasing : xorg-x11-drv-fbdev-0.4.3-17.el6.x86_64 191/344

    Erasing : xorg-x11-drv-fpit-1.4.0-7.el6.x86_64 192/344

    Erasing : xorg-x11-drv-glint-1.2.8-11.el6.x86_64 193/344

    Erasing : xorg-x11-drv-hyperpen-1.4.1-6.el6.x86_64 194/344

    Erasing : xorg-x11-drv-i128-1.3.6-11.el6.x86_64 195/344

    Erasing : xorg-x11-drv-i740-1.3.4-12.el6.x86_64 196/344

    Erasing : xorg-x11-drv-keyboard-1.8.1-1.el6.x86_64 197/344

    Erasing : xorg-x11-drv-mach64-6.9.4-10.el6.x86_64 198/344

    Erasing : xorg-x11-drv-mga-1.6.3-9.el6.x86_64 199/344

    Erasing : xorg-x11-drv-mouse-1.9.1-1.el6.x86_64 200/344

    Erasing : xorg-x11-drv-mutouch-1.3.0-6.el6.x86_64 201/344

    Erasing : xorg-x11-drv-nv-2.1.20-6.el6.x86_64 202/344

    Erasing : xorg-x11-drv-penmount-1.5.0-6.el6.x86_64 203/344

    Erasing : xorg-x11-drv-r128-6.10.0-1.el6.x86_64 204/344

    Erasing : xorg-x11-drv-rendition-4.2.6-1.el6.x86_64 205/344

    Erasing : xorg-x11-drv-s3virge-1.10.7-1.el6.x86_64 206/344

    Erasing : xorg-x11-drv-savage-2.3.7-3.el6.x86_64 207/344

    Erasing : xorg-x11-drv-siliconmotion-1.7.8-1.el6.x86_64 208/344

    Erasing : xorg-x11-drv-sis-0.10.8-1.el6.x86_64 209/344

    Erasing : xorg-x11-drv-sisusb-0.9.6-11.el6.x86_64 210/344

    Erasing : xorg-x11-drv-tdfx-1.4.6-1.el6.x86_64 211/344

    Erasing : xorg-x11-drv-trident-1.3.6-11.el6.x86_64 212/344

    Erasing : xorg-x11-drv-v4l-0.2.0-37.el6.x86_64 213/344

    Erasing : xorg-x11-drv-voodoo-1.2.5-11.el6.x86_64 214/344

    Erasing : xorg-x11-drv-xgi-1.6.1-1.el6.x86_64 215/344

    Erasing : xorg-x11-drv-vmmouse-13.1.0-1.el6.x86_64 216/344

    Erasing : xorg-x11-drv-qxl-0.1.1-19.el6.x86_64 217/344

    Erasing : pulseaudio-module-x11-0.9.21-24.el6.x86_64 218/344

    Erasing : sane-backends-libs-gphoto2-1.0.21-3.el6.x86_64 219/344

    Erasing : gthumb-2.10.11-8.el6.x86_64 220/344

    Erasing : 1:emacs-23.1-28.el6.x86_64 221/344

    Erasing : 1:emacs-common-23.1-28.el6.x86_64 222/344

    Erasing : gnome-vfs2-smb-2.24.2-8.el6.x86_64 223/344

    Erasing : xsane-gimp-0.997-8.el6.x86_64 224/344

    Erasing : gcalctool-5.28.2-3.el6.x86_64 225/344

    Erasing : 1:cpuspeed-1.5-22.el6.x86_64 226/344

    Erasing : 1:NetworkManager-gnome-0.8.1-107.el6.x86_64 227/344

    Erasing : 1:NetworkManager-0.8.1-107.el6.x86_64 228/344

    Erasing : rp-pppoe-3.10-16.el6.x86_64 229/344

    Erasing : 12:dhclient-4.1.1-51.P1.el6.centos.x86_64 230/344

    Erasing : dnsmasq-2.48-17.el6.x86_64 231/344

    Erasing : 1:wpa_supplicant-0.7.3-8.el6.x86_64 232/344

    Erasing : xsane-0.997-8.el6.x86_64 233/344

    Erasing : sane-backends-libs-1.0.21-3.el6.x86_64 234/344

    Erasing : sane-backends-1.0.21-3.el6.x86_64 235/344

    Erasing : sound-juicer-2.28.1-6.el6.x86_64 236/344

    Erasing : spice-vdagent-0.14.0-11.el6.x86_64 237/344

    Erasing : pulseaudio-module-gconf-0.9.21-24.el6.x86_64 238/344

    Erasing : 1:gnome-utils-2.28.1-10.el6.x86_64 239/344

    Erasing : virt-top-1.0.4-3.15.el6.x86_64 240/344

    Erasing : libvirt-client-0.10.2-60.el6.x86_64 241/344

    Erasing : cifs-utils-4.8.1-20.el6.x86_64 242/344

    Erasing : ibus-qt-1.3.0-2.el6.x86_64 243/344

    Erasing : 1:phonon-backend-gstreamer-4.6.2-28.el6_5.x86_64 244/344

    Erasing : 1:qt-x11-4.6.2-28.el6_5.x86_64 245/344

    Erasing : mesa-libGLU-11.0.7-4.el6.x86_64 246/344

    Erasing : sysstat-9.0.4-31.el6.x86_64 247/344

    Erasing : crontabs-1.10-33.el6.noarch 248/344
    warning: /etc/crontab saved as /etc/crontab.rpmsave

    Erasing : cronie-anacron-1.4.4-15.el6_7.1.x86_64 249/344

    Erasing : cronie-1.4.4-15.el6_7.1.x86_64 250/344

    Erasing : 2:postfix-2.6.6-6.el6_7.1.x86_64 251/344
    warning: /etc/postfix/main.cf saved as /etc/postfix/main.cf.rpmsave

    Erasing : cyrus-sasl-2.1.23-15.el6_6.2.x86_64 252/344

    Erasing : rsyslog-5.8.10-10.el6_6.x86_64 253/344
    warning: /etc/rsyslog.conf saved as /etc/rsyslog.conf.rpmsave

    Erasing : seahorse-2.28.1-4.el6.x86_64 254/344

    Erasing : 1:net-snmp-5.5-57.el6.x86_64 255/344
    warning: /etc/snmp/snmpd.conf saved as /etc/snmp/snmpd.conf.rpmsave

    Erasing : gok-2.28.1-5.el6.x86_64 256/344

    Erasing : gvfs-archive-1.4.3-26.el6.x86_64 257/344

    Erasing : brasero-nautilus-2.30.3-3.el6.x86_64 258/344

    Erasing : 1:gdm-plugin-fingerprint-2.30.4-64.el6.x86_64 259/344

    Erasing : gvfs-afc-1.4.3-26.el6.x86_64 260/344

    Erasing : 1:microcode_ctl-1.17-21.el6.x86_64 261/344

    Erasing : acpid-1.0.10-3.el6.x86_64 262/344

    Erasing : rng-tools-5-2.el6_7.x86_64 263/344

    Erasing : 1:control-center-extra-2.28.1-40.el6.x86_64 264/344

    Erasing : 2:qemu-kvm-0.12.1.2-2.491.el6_8.1.x86_64 265/344

    Erasing : gvfs-gphoto2-1.4.3-26.el6.x86_64 266/344

    Erasing : eclipse-oprofile-0.6.1-1.el6.x86_64 267/344

    Erasing : setuptool-1.19.9-4.el6.x86_64 268/344

    Erasing : biosdevname-0.7.1-3.el6.x86_64 269/344

    Erasing : openssh-askpass-5.3p1-118.1.el6_8.x86_64 270/344

    Erasing : openssh-5.3p1-118.1.el6_8.x86_64 271/344

    Erasing : 1:smartmontools-5.43-1.el6.x86_64 272/344

    Erasing : 1:quota-3.17-23.el6.x86_64 273/344

    Erasing : xmlto-0.0.23-3.el6.x86_64 274/344

    Erasing : eog-2.28.2-4.el6.x86_64 275/344

    Erasing : virt-what-1.11-1.2.el6.x86_64 276/344

    Erasing : system-config-printer-udev-1.1.16-25.el6.x86_64 277/344

    Erasing : system-config-printer-libs-1.1.16-25.el6.x86_64 278/344

    Erasing : libsmbclient-3.6.23-35.el6_8.x86_64 279/344

    Erasing : samba-common-3.6.23-35.el6_8.x86_64 280/344

    Erasing : samba-winbind-clients-3.6.23-35.el6_8.x86_64 281/344

    Erasing : samba-winbind-3.6.23-35.el6_8.x86_64 282/344

    Erasing : gutenprint-cups-5.2.5-2.el6.x86_64 283/344

    Erasing : 1:cups-1.4.2-74.el6.x86_64 284/344

    Erasing : nautilus-sendto-2.28.2-4.el6.x86_64 285/344

    Erasing : nautilus-2.28.4-25.el6.x86_64 286/344

    Erasing : nautilus-extensions-2.28.4-25.el6.x86_64 287/344

    Erasing : gvfs-1.4.3-26.el6.x86_64 288/344

    Erasing : gnome-disk-utility-libs-2.30.1-3.el6.x86_64 289/344

    Erasing : udisks-1.0.1-9.el6.x86_64 290/344

    Erasing : mdadm-3.3.4-1.el6.x86_64 291/344

    Erasing : parted-2.1-29.el6.x86_64 292/344

    Erasing : pcmciautils-015-4.2.el6.x86_64 293/344

    Erasing : alsa-plugins-pulseaudio-1.1.0-1.el6.x86_64 294/344

    Erasing : pulseaudio-0.9.21-24.el6.x86_64 295/344

    Erasing : 1:gdm-user-switch-applet-2.30.4-64.el6.x86_64 296/344

    Erasing : plymouth-gdm-hooks-0.8.3-29.0.1.el6.x86_64 297/344

    Erasing : pulseaudio-gdm-hooks-0.9.21-24.el6.x86_64 298/344

    Erasing : 1:gdm-2.30.4-64.el6.x86_64 299/344

    Erasing : gnome-session-2.28.0-22.el6.x86_64 300/344

    Erasing : 1:control-center-2.28.1-40.el6.x86_64 301/344

    Erasing : DeviceKit-power-014-3.el6.x86_64 302/344

    Erasing : gnome-settings-daemon-2.28.2-35.el6.x86_64 303/344

    Erasing : xorg-x11-drv-wacom-0.32.0-1.el6.x86_64 304/344

    Erasing : xorg-x11-drv-evdev-2.9.2-1.el6.x86_64 305/344

    Erasing : xorg-x11-drv-vesa-2.3.4-1.el6.x86_64 306/344

    Erasing : xorg-x11-drv-void-1.4.1-1.el6.x86_64 307/344

    Erasing : xorg-x11-server-Xorg-1.17.4-9.el6.centos.x86_64 308/344

    Erasing : mesa-dri1-drivers-7.11-8.el6.x86_64 309/344

    Erasing : mesa-libGL-11.0.7-4.el6.x86_64 310/344

    Erasing : mesa-dri-drivers-11.0.7-4.el6.x86_64 311/344

    Erasing : mesa-libEGL-11.0.7-4.el6.x86_64 312/344

    Erasing : mesa-libgbm-11.0.7-4.el6.x86_64 313/344

    Erasing : system-setup-keyboard-0.7-4.el6.x86_64 314/344

    Erasing : hal-info-20090716-5.el6.noarch 315/344

    Erasing : pm-utils-1.2.5-11.el6.x86_64 316/344

    Erasing : hal-0.5.14-14.el6.x86_64 317/344

    Erasing : cryptsetup-luks-1.2.0-11.el6.x86_64 318/344

    Erasing : cryptsetup-luks-libs-1.2.0-11.el6.x86_64 319/344

    Erasing : device-mapper-1.02.117-7.el6.x86_64 320/344

    Erasing : device-mapper-libs-1.02.117-7.el6.x86_64 321/344

    Erasing : kbd-1.15-11.el6.x86_64 322/344

    Erasing : metacity-2.28.0-23.el6.x86_64 323/344

    Erasing : zenity-2.28.0-1.el6.x86_64 324/344

    Erasing : usermode-1.102-3.el6.x86_64 325/344

    Erasing : plymouth-utils-0.8.3-29.0.1.el6.x86_64 326/344

    Erasing : prelink-0.4.6-3.1.el6_4.x86_64 327/344

    Erasing : gnome-system-monitor-2.28.0-11.el6.x86_64 328/344

    Erasing : rarian-compat-0.8.1-5.1.el6.x86_64 329/344

    Erasing : rarian-0.8.1-5.1.el6.x86_64 330/344

    Erasing : postgresql-devel-8.4.20-6.el6.x86_64 331/344

    Erasing : oraclelinux-release-el6-1.0-7.el6.noarch 332/344

    Erasing : postgresql-8.4.20-6.el6.x86_64 333/344

    Erasing : iproute-2.6.32-54.el6.x86_64 334/344

    Erasing : iptables-1.4.7-16.el6.x86_64 335/344

    Erasing : policycoreutils-2.0.83-29.el6.x86_64 336/344

    Erasing : libdrm-2.4.65-2.el6.x86_64 337/344

    Erasing : util-linux-ng-2.17.2-12.24.el6.x86_64 338/344
    warning: /etc/pam.d/login saved as /etc/pam.d/login.rpmsave

    Erasing : iputils-20071127-21.el6.x86_64 339/344

    Erasing : plymouth-0.8.3-29.0.1.el6.x86_64 340/344

    Erasing : udev-147-2.73.el6.x86_64 341/344

    Erasing : initscripts-9.03.61-1.0.6.el6.x86_64 342/344
    warning: /etc/sysctl.conf saved as /etc/sysctl.conf.rpmsave
    warning: /etc/rc.d/rc.local saved as /etc/rc.d/rc.local.rpmsave
    warning: /etc/adjtime saved as /etc/adjtime.rpmsave

    Erasing : 6:oraclelinux-release-6Server-10.0.2.x86_64 343/344

    Erasing : 1:redhat-release-server-6Server-6.10.0.12.0.1.el6.x86_ 344/344

    Verifying : postgresql-devel-8.4.20-6.el6.x86_64 1/344

    Verifying : bluez-4.66-1.el6.x86_64 2/344

    Verifying : openssh-5.3p1-118.1.el6_8.x86_64 3/344

    Verifying : 1:xorg-x11-drv-nouveau-1.0.12-1.el6.x86_64 4/344

    Verifying : ipa-client-3.0.0-50.el6.centos.1.x86_64 5/344

    Verifying : gnome-system-monitor-2.28.0-11.el6.x86_64 6/344

    Verifying : prelink-0.4.6-3.1.el6_4.x86_64 7/344

    Verifying : xorg-x11-server-Xorg-1.17.4-9.el6.centos.x86_64 8/344

    Verifying : xorg-x11-drv-voodoo-1.2.5-11.el6.x86_64 9/344

    Verifying : xorg-x11-drv-intel-2.99.917-0.4.20151111.el6.x86_64 10/344

    Verifying : 1:control-center-2.28.1-40.el6.x86_64 11/344

    Verifying : libcgroup-devel-0.40.rc1-17.el6_7.x86_64 12/344

    Verifying : ptouch-driver-1.3-2.1.el6.x86_64 13/344

    Verifying : iscsi-initiator-utils-6.2.0.873-21.el6.x86_64 14/344

    Verifying : python-virtinst-0.600.0-29.el6.noarch 15/344

    Verifying : xorg-x11-drv-penmount-1.5.0-6.el6.x86_64 16/344

    Verifying : sane-backends-1.0.21-3.el6.x86_64 17/344

    Verifying : totem-2.28.6-4.el6.x86_64 18/344

    Verifying : parted-2.1-29.el6.x86_64 19/344

    Verifying : 1:gdm-user-switch-applet-2.30.4-64.el6.x86_64 20/344

    Verifying : gnome-user-share-2.28.2-3.el6.x86_64 21/344

    Verifying : epel-release-6-8.noarch 22/344

    Verifying : gnome-keyring-devel-2.28.2-8.el6_3.x86_64 23/344

    Verifying : alsa-plugins-pulseaudio-1.1.0-1.el6.x86_64 24/344

    Verifying : gnome-session-xsession-2.28.0-22.el6.x86_64 25/344

    Verifying : rsyslog-5.8.10-10.el6_6.x86_64 26/344

    Verifying : eclipse-svnkit-1.3.0-3.el6.x86_64 27/344

    Verifying : samba-winbind-3.6.23-35.el6_8.x86_64 28/344

    Verifying : openldap-devel-2.4.40-12.el6.x86_64 29/344

    Verifying : mesa-libGLU-11.0.7-4.el6.x86_64 30/344

    Verifying : redhat-lsb-graphics-4.0-7.el6.centos.x86_64 31/344

    Verifying : xorg-x11-drv-ast-1.1.5-1.el6.x86_64 32/344

    Verifying : mdadm-3.3.4-1.el6.x86_64 33/344

    Verifying : pcmciautils-015-4.2.el6.x86_64 34/344

    Verifying : xorg-x11-drv-vmware-13.1.0-2.el6.x86_64 35/344

    Verifying : nautilus-sendto-2.28.2-4.el6.x86_64 36/344

    Verifying : file-roller-2.28.2-7.el6.x86_64 37/344

    Verifying : dracut-004-409.el6_8.2.noarch 38/344

    Verifying : gutenprint-cups-5.2.5-2.el6.x86_64 39/344

    Verifying : 1:wireless-tools-29-6.el6.x86_64 40/344

    Verifying : gnome-packagekit-2.28.3-9.el6.x86_64 41/344

    Verifying : xorg-x11-drv-fbdev-0.4.3-17.el6.x86_64 42/344

    Verifying : rhythmbox-0.12.8-1.el6.x86_64 43/344

    Verifying : system-config-printer-udev-1.1.16-25.el6.x86_64 44/344

    Verifying : polkit-docs-0.96-11.el6.x86_64 45/344

    Verifying : gnome-user-docs-2.28.0-4.el6.noarch 46/344

    Verifying : rpmdevtools-7.5-2.el6.noarch 47/344

    Verifying : libsmbclient-3.6.23-35.el6_8.x86_64 48/344

    Verifying : virt-what-1.11-1.2.el6.x86_64 49/344

    Verifying : rarian-0.8.1-5.1.el6.x86_64 50/344

    Verifying : crontabs-1.10-33.el6.noarch 51/344

    Verifying : eog-2.28.2-4.el6.x86_64 52/344

    Verifying : media-player-info-6-1.el6.noarch 53/344

    Verifying : samba-winbind-clients-3.6.23-35.el6_8.x86_64 54/344

    Verifying : samba-client-3.6.23-35.el6_8.x86_64 55/344

    Verifying : orca-2.28.2-1.el6.x86_64 56/344

    Verifying : xorg-x11-drv-mga-1.6.3-9.el6.x86_64 57/344

    Verifying : xorg-x11-drv-synaptics-1.8.3-1.el6.x86_64 58/344

    Verifying : libacl-devel-2.2.49-6.el6.x86_64 59/344

    Verifying : xorg-x11-drv-hyperpen-1.4.1-6.el6.x86_64 60/344

    Verifying : virt-viewer-2.0-14.el6.x86_64 61/344

    Verifying : xorg-x11-drv-mutouch-1.3.0-6.el6.x86_64 62/344

    Verifying : zenity-2.28.0-1.el6.x86_64 63/344

    Verifying : hal-0.5.14-14.el6.x86_64 64/344

    Verifying : perl-Git-1.7.1-9.el6_9.noarch 65/344

    Verifying : system-setup-keyboard-0.7-4.el6.x86_64 66/344

    Verifying : hal-info-20090716-5.el6.noarch 67/344

    Verifying : gpfs.base-3.5.0-13.x86_64 68/344

    Verifying : gvfs-smb-1.4.3-26.el6.x86_64 69/344

    Verifying : cyrus-sasl-2.1.23-15.el6_6.2.x86_64 70/344

    Verifying : system-config-date-docs-1.0.11-1.el6.noarch 71/344

    Verifying : systemtap-2.9-7.el6.x86_64 72/344

    Verifying : usermode-gtk-1.102-3.el6.x86_64 73/344

    Verifying : libvirt-devel-0.10.2-60.el6.x86_64 74/344

    Verifying : system-config-network-tui-1.6.0.el6.3-4.el6.noarch 75/344

    Verifying : aic94xx-firmware-30-2.el6.noarch 76/344

    Verifying : libgweather-devel-2.28.0-5.el6.x86_64 77/344

    Verifying : policycoreutils-2.0.83-29.el6.x86_64 78/344

    Verifying : xmlto-0.0.23-3.el6.x86_64 79/344

    Verifying : 1:autofs-5.0.5-122.el6.x86_64 80/344

    Verifying : libgpod-0.7.2-6.el6.x86_64 81/344

    Verifying : fuse-2.8.3-5.el6.x86_64 82/344

    Verifying : lvm2-2.02.143-7.el6.x86_64 83/344

    Verifying : gnome-desktop-devel-2.28.2-11.el6.centos.x86_64 84/344

    Verifying : xorg-x11-drv-apm-1.2.5-11.el6.x86_64 85/344

    Verifying : python-iwlib-0.1-1.2.el6.x86_64 86/344

    Verifying : 1:quota-3.17-23.el6.x86_64 87/344

    Verifying : gnome-vfs2-devel-2.24.2-8.el6.x86_64 88/344

    Verifying : subversion-javahl-1.6.11-15.el6_7.x86_64 89/344

    Verifying : at-3.1.10-48.el6.x86_64 90/344

    Verifying : openssh-server-5.3p1-118.1.el6_8.x86_64 91/344

    Verifying : libbonoboui-devel-2.24.2-3.el6.x86_64 92/344

    Verifying : redhat-lsb-compat-4.0-7.el6.centos.x86_64 93/344

    Verifying : device-mapper-event-1.02.117-7.el6.x86_64 94/344

    Verifying : libvirt-python-0.10.2-60.el6.x86_64 95/344

    Verifying : 1:wpa_supplicant-0.7.3-8.el6.x86_64 96/344

    Verifying : desktop-effects-0.8.4-7.el6.x86_64 97/344

    Verifying : xorg-x11-drv-dummy-0.3.6-16.el6.x86_64 98/344

    Verifying : 1:smartmontools-5.43-1.el6.x86_64 99/344

    Verifying : xorg-x11-drv-tdfx-1.4.6-1.el6.x86_64 100/344

    Verifying : lxc-libs-1.0.11-1.el6.x86_64 101/344

    Verifying : iptables-1.4.7-16.el6.x86_64 102/344

    Verifying : openssh-askpass-5.3p1-118.1.el6_8.x86_64 103/344

    Verifying : system-config-firewall-base-1.2.27-7.2.el6_6.noarch 104/344

    Verifying : xorg-x11-drv-acecad-1.5.0-8.el6.x86_64 105/344

    Verifying : xorg-x11-drv-ati-7.6.1-2.el6.x86_64 106/344

    Verifying : libvirt-java-0.4.9-1.el6.noarch 107/344

    Verifying : xorg-x11-drv-mach64-6.9.4-10.el6.x86_64 108/344

    Verifying : device-mapper-event-libs-1.02.117-7.el6.x86_64 109/344

    Verifying : xorg-x11-drv-openchrome-0.3.3-7.el6.x86_64 110/344

    Verifying : pm-utils-1.2.5-11.el6.x86_64 111/344

    Verifying : biosdevname-0.7.1-3.el6.x86_64 112/344

    Verifying : xorg-x11-drv-fpit-1.4.0-7.el6.x86_64 113/344

    Verifying : xorg-x11-drv-cirrus-1.5.3-1.el6.x86_64 114/344

    Verifying : setuptool-1.19.9-4.el6.x86_64 115/344

    Verifying : eclipse-oprofile-0.6.1-1.el6.x86_64 116/344

    Verifying : rarian-compat-0.8.1-5.1.el6.x86_64 117/344

    Verifying : plymouth-utils-0.8.3-29.0.1.el6.x86_64 118/344

    Verifying : system-config-services-0.99.45-1.el6.3.noarch 119/344

    Verifying : systemtap-client-2.9-7.el6.x86_64 120/344

    Verifying : udev-147-2.73.el6.x86_64 121/344

    Verifying : sane-backends-libs-1.0.21-3.el6.x86_64 122/344

    Verifying : lvm2-libs-2.02.143-7.el6.x86_64 123/344

    Verifying : 1:phonon-backend-gstreamer-4.6.2-28.el6_5.x86_64 124/344

    Verifying : sane-frontends-1.0.14-9.2.el6.x86_64 125/344

    Verifying : authconfig-gtk-6.1.12-23.el6.x86_64 126/344

    Verifying : 1:hpijs-3.14.6-3.el6.x86_64 127/344

    Verifying : hplip-libs-3.14.6-3.el6.x86_64 128/344

    Verifying : foomatic-4.0.4-5.el6_7.x86_64 129/344

    Verifying : redhat-lsb-4.0-7.el6.centos.x86_64 130/344

    Verifying : hal-devel-0.5.14-14.el6.x86_64 131/344

    Verifying : xorg-x11-drv-sis-0.10.8-1.el6.x86_64 132/344

    Verifying : ntpdate-4.2.6p5-10.el6.centos.1.x86_64 133/344

    Verifying : crda-3.13_2015.10.22-3.el6.x86_64 134/344

    Verifying : xorg-x11-drv-r128-6.10.0-1.el6.x86_64 135/344

    Verifying : certmonger-0.77.5-2.el6.x86_64 136/344

    Verifying : mesa-libgbm-11.0.7-4.el6.x86_64 137/344

    Verifying : lxc-1.0.11-1.el6.x86_64 138/344

    Verifying : system-config-printer-1.1.16-25.el6.x86_64 139/344

    Verifying : pulseaudio-module-bluetooth-0.9.21-24.el6.x86_64 140/344

    Verifying : gnome-power-manager-2.28.3-7.el6_4.x86_64 141/344

    Verifying : mesa-libxatracker-11.0.7-4.el6.x86_64 142/344

    Verifying : sssd-common-pac-1.13.3-22.el6.x86_64 143/344

    Verifying : plymouth-gdm-hooks-0.8.3-29.0.1.el6.x86_64 144/344

    Verifying : gvfs-gphoto2-1.4.3-26.el6.x86_64 145/344

    Verifying : openssh-clients-5.3p1-118.1.el6_8.x86_64 146/344

    Verifying : xorg-x11-drivers-7.3-13.4.el6.x86_64 147/344

    Verifying : mesa-libGLw-devel-6.5.1-10.el6.x86_64 148/344

    Verifying : 2:postfix-2.6.6-6.el6_7.1.x86_64 149/344

    Verifying : postgresql-8.4.20-6.el6.x86_64 150/344

    Verifying : cronie-anacron-1.4.4-15.el6_7.1.x86_64 151/344

    Verifying : xorg-x11-drv-aiptek-1.4.1-6.el6.x86_64 152/344

    Verifying : gpfs.gplbin-2.6.32-642.1.1.el6.x86_64-3.5.0-13.x86_64 153/344

    Verifying : compiz-gnome-0.8.2-24.el6.x86_64 154/344

    Verifying : cryptsetup-luks-libs-1.2.0-11.el6.x86_64 155/344

    Verifying : xorg-x11-drv-xgi-1.6.1-1.el6.x86_64 156/344

    Verifying : foomatic-db-4.0-7.20091126.el6.noarch 157/344

    Verifying : system-config-users-docs-1.0.8-2.el6.noarch 158/344

    Verifying : samba-common-3.6.23-35.el6_8.x86_64 159/344

    Verifying : 1:readahead-1.5.6-2.el6.x86_64 160/344

    Verifying : xorg-x11-drv-s3virge-1.10.7-1.el6.x86_64 161/344

    Verifying : 1:qt-x11-4.6.2-28.el6_5.x86_64 162/344

    Verifying : pulseaudio-gdm-hooks-0.9.21-24.el6.x86_64 163/344

    Verifying : DeviceKit-power-014-3.el6.x86_64 164/344

    Verifying : 2:qemu-kvm-0.12.1.2-2.491.el6_8.1.x86_64 165/344

    Verifying : system-config-users-1.2.106-8.el6.noarch 166/344

    Verifying : libgnomecanvas-devel-2.26.0-4.el6.x86_64 167/344

    Verifying : 1:qt-devel-4.6.2-28.el6_5.x86_64 168/344

    Verifying : libgdata-devel-0.6.4-2.el6.x86_64 169/344

    Verifying : xorg-x11-drv-glint-1.2.8-11.el6.x86_64 170/344

    Verifying : 1:control-center-extra-2.28.1-40.el6.x86_64 171/344

    Verifying : metacity-2.28.0-23.el6.x86_64 172/344

    Verifying : sssd-proxy-1.13.3-22.el6.x86_64 173/344

    Verifying : rng-tools-5-2.el6_7.x86_64 174/344

    Verifying : gtk-doc-1.11-5.1.el6.noarch 175/344

    Verifying : git-1.7.1-9.el6_9.x86_64 176/344

    Verifying : sssd-krb5-1.13.3-22.el6.x86_64 177/344

    Verifying : 1:NetworkManager-0.8.1-107.el6.x86_64 178/344

    Verifying : 12:dhclient-4.1.1-51.P1.el6.centos.x86_64 179/344

    Verifying : acpid-1.0.10-3.el6.x86_64 180/344

    Verifying : dmraid-events-1.0.0.rc16-11.el6.x86_64 181/344

    Verifying : libvirt-java-devel-0.4.9-1.el6.noarch 182/344

    Verifying : 1:microcode_ctl-1.17-21.el6.x86_64 183/344

    Verifying : xorg-x11-drv-qxl-0.1.1-19.el6.x86_64 184/344

    Verifying : xorg-x11-drv-sisusb-0.9.6-11.el6.x86_64 185/344

    Verifying : cyrus-sasl-devel-2.1.23-15.el6_6.2.x86_64 186/344

    Verifying : qt3-devel-3.3.8b-30.el6.x86_64 187/344

    Verifying : 1:gnome-applets-2.28.0-7.el6.centos.x86_64 188/344

    Verifying : redhat-lsb-printing-4.0-7.el6.centos.x86_64 189/344

    Verifying : svnkit-1.3.0-3.el6.x86_64 190/344

    Verifying : system-config-date-1.9.60-2.el6.centos.noarch 191/344

    Verifying : gvfs-afc-1.4.3-26.el6.x86_64 192/344

    Verifying : gnome-disk-utility-2.30.1-3.el6.x86_64 193/344

    Verifying : gpfs.gplbin-2.6.32-573.22.1.el6.x86_64-3.5.0-13.x86_64 194/344

    Verifying : system-config-firewall-tui-1.2.27-7.2.el6_6.noarch 195/344

    Verifying : gvfs-1.4.3-26.el6.x86_64 196/344

    Verifying : mesa-libEGL-11.0.7-4.el6.x86_64 197/344

    Verifying : wacomexpresskeys-0.4.2-3.el6.x86_64 198/344

    Verifying : redhat-lsb-core-4.0-7.el6.centos.x86_64 199/344

    Verifying : libvirt-client-0.10.2-60.el6.x86_64 200/344

    Verifying : gnome-session-2.28.0-22.el6.x86_64 201/344

    Verifying : pulseaudio-0.9.21-24.el6.x86_64 202/344

    Verifying : xorg-x11-drv-rendition-4.2.6-1.el6.x86_64 203/344

    Verifying : foomatic-db-ppds-4.0-7.20091126.el6.noarch 204/344

    Verifying : sssd-ldap-1.13.3-22.el6.x86_64 205/344

    Verifying : xorg-x11-drv-i740-1.3.4-12.el6.x86_64 206/344

    Verifying : cronie-1.4.4-15.el6_7.1.x86_64 207/344

    Verifying : mesa-libGL-devel-11.0.7-4.el6.x86_64 208/344

    Verifying : numad-0.5-12.20150602git.el6.x86_64 209/344

    Verifying : mesa-libGL-11.0.7-4.el6.x86_64 210/344

    Verifying : 1:redhat-release-server-6Server-6.10.0.12.0.1.el6.x86_ 211/344

    Verifying : 1:gdm-plugin-fingerprint-2.30.4-64.el6.x86_64 212/344

    Verifying : GConf2-devel-2.28.0-6.el6.x86_64 213/344

    Verifying : rp-pppoe-3.10-16.el6.x86_64 214/344

    Verifying : yelp-2.28.1-17.el6_3.x86_64 215/344

    Verifying : xorg-x11-drv-mouse-1.9.1-1.el6.x86_64 216/344

    Verifying : glx-utils-11.0.7-4.el6.x86_64 217/344

    Verifying : libgnome-devel-2.28.0-11.el6.x86_64 218/344

    Verifying : subversion-1.6.11-15.el6_7.x86_64 219/344

    Verifying : libcanberra-devel-0.22-3.el6.x86_64 220/344

    Verifying : xorg-x11-drv-wacom-0.32.0-1.el6.x86_64 221/344

    Verifying : xorg-x11-drv-nv-2.1.20-6.el6.x86_64 222/344

    Verifying : brasero-nautilus-2.30.3-3.el6.x86_64 223/344

    Verifying : kbd-1.15-11.el6.x86_64 224/344

    Verifying : nautilus-open-terminal-0.17-4.el6.x86_64 225/344

    Verifying : gvfs-archive-1.4.3-26.el6.x86_64 226/344

    Verifying : rear-1.17.2-4.el6.x86_64 227/344

    Verifying : xorg-x11-drv-i128-1.3.6-11.el6.x86_64 228/344

    Verifying : ntp-4.2.6p5-10.el6.centos.1.x86_64 229/344

    Verifying : initscripts-9.03.61-1.0.6.el6.x86_64 230/344

    Verifying : gnome-settings-daemon-2.28.2-35.el6.x86_64 231/344

    Verifying : 1:gdm-2.30.4-64.el6.x86_64 232/344

    Verifying : 6:oraclelinux-release-6Server-10.0.2.x86_64 233/344

    Verifying : gok-2.28.1-5.el6.x86_64 234/344

    Verifying : oddjob-0.30-6.el6.x86_64 235/344

    Verifying : 1:net-snmp-5.5-57.el6.x86_64 236/344

    Verifying : system-config-firewall-1.2.27-7.2.el6_6.noarch 237/344

    Verifying : gnome-panel-2.30.2-16.el6.x86_64 238/344

    Verifying : usermode-1.102-3.el6.x86_64 239/344

    Verifying : system-config-keyboard-1.3.1-6.el6.x86_64 240/344

    Verifying : libdrm-2.4.65-2.el6.x86_64 241/344

    Verifying : seahorse-2.28.1-4.el6.x86_64 242/344

    Verifying : xorg-x11-drv-siliconmotion-1.7.8-1.el6.x86_64 243/344

    Verifying : 1:emacs-common-23.1-28.el6.x86_64 244/344

    Verifying : cryptsetup-luks-1.2.0-11.el6.x86_64 245/344

    Verifying : libdrm-devel-2.4.65-2.el6.x86_64 246/344

    Verifying : xorg-x11-drv-trident-1.3.6-11.el6.x86_64 247/344

    Verifying : libvirt-0.10.2-60.el6.x86_64 248/344

    Verifying : evince-2.28.2-19.el6.x86_64 249/344

    Verifying : fakeroot-1.12.2-22.2.el6.x86_64 250/344

    Verifying : gnome-bluetooth-2.28.6-8.el6.x86_64 251/344

    Verifying : virt-manager-0.9.0-31.el6.x86_64 252/344

    Verifying : nautilus-extensions-2.28.4-25.el6.x86_64 253/344

    Verifying : sysstat-9.0.4-31.el6.x86_64 254/344

    Verifying : xorg-x11-drv-void-1.4.1-1.el6.x86_64 255/344

    Verifying : dmraid-1.0.0.rc16-11.el6.x86_64 256/344

    Verifying : 1:gedit-2.28.4-4.el6.x86_64 257/344

    Verifying : ibus-qt-1.3.0-2.el6.x86_64 258/344

    Verifying : mesa-libGLU-devel-11.0.7-4.el6.x86_64 259/344

    Verifying : system-config-kdump-2.0.5-18.el6.noarch 260/344

    Verifying : cifs-utils-4.8.1-20.el6.x86_64 261/344

    Verifying : gvfs-obexftp-1.4.3-26.el6.x86_64 262/344

    Verifying : dnsmasq-2.48-17.el6.x86_64 263/344

    Verifying : xorg-x11-drv-savage-2.3.7-3.el6.x86_64 264/344

    Verifying : ORBit2-devel-2.14.17-5.el6.x86_64 265/344

    Verifying : 1:nfs-utils-1.2.3-70.el6.x86_64 266/344

    Verifying : virt-top-1.0.4-3.15.el6.x86_64 267/344

    Verifying : iputils-20071127-21.el6.x86_64 268/344

    Verifying : sssd-ad-1.13.3-22.el6.x86_64 269/344

    Verifying : xorg-x11-drv-evdev-2.9.2-1.el6.x86_64 270/344

    Verifying : 1:gnome-utils-2.28.1-10.el6.x86_64 271/344

    Verifying : pulseaudio-module-gconf-0.9.21-24.el6.x86_64 272/344

    Verifying : compiz-0.8.2-24.el6.x86_64 273/344

    Verifying : dracut-kernel-004-409.el6_8.2.noarch 274/344

    Verifying : gnome-disk-utility-ui-libs-2.30.1-3.el6.x86_64 275/344

    Verifying : eclipse-callgraph-0.6.1-1.el6.x86_64 276/344

    Verifying : nautilus-2.28.4-25.el6.x86_64 277/344

    Verifying : gvfs-fuse-1.4.3-26.el6.x86_64 278/344

    Verifying : gvfs-devel-1.4.3-26.el6.x86_64 279/344

    Verifying : xorg-x11-drv-elographics-1.4.1-4.el6.x86_64 280/344

    Verifying : xorg-x11-drv-v4l-0.2.0-37.el6.x86_64 281/344

    Verifying : oraclelinux-release-el6-1.0-7.el6.noarch 282/344

    Verifying : spice-vdagent-0.14.0-11.el6.x86_64 283/344

    Verifying : sound-juicer-2.28.1-6.el6.x86_64 284/344

    Verifying : sssd-krb5-common-1.13.3-22.el6.x86_64 285/344

    Verifying : xsane-0.997-8.el6.x86_64 286/344

    Verifying : libgnomeui-devel-2.24.1-4.el6.x86_64 287/344

    Verifying : libmtp-1.0.1-2.el6.x86_64 288/344

    Verifying : eclipse-rpm-editor-0.5.0-2.el6.x86_64 289/344

    Verifying : ipa-python-3.0.0-50.el6.centos.1.x86_64 290/344

    Verifying : libcgroup-0.40.rc1-17.el6_7.x86_64 291/344

    Verifying : iproute-2.6.32-54.el6.x86_64 292/344

    Verifying : nfs-utils-lib-1.1.5-11.el6.x86_64 293/344

    Verifying : kexec-tools-2.0.0-300.el6.x86_64 294/344

    Verifying : mesa-libGLw-6.5.1-10.el6.x86_64 295/344

    Verifying : xorg-x11-drv-keyboard-1.8.1-1.el6.x86_64 296/344

    Verifying : gnome-disk-utility-libs-2.30.1-3.el6.x86_64 297/344

    Verifying : radvd-1.6-1.el6.x86_64 298/344

    Verifying : 1:NetworkManager-gnome-0.8.1-107.el6.x86_64 299/344

    Verifying : mesa-dri1-drivers-7.11-8.el6.x86_64 300/344

    Verifying : ebtables-2.0.9-6.el6.x86_64 301/344

    Verifying : gpfs.gplbin-2.6.32-504.12.2.el6.x86_64-3.5.0-13.x86_64 302/344

    Verifying : sssd-1.13.3-22.el6.x86_64 303/344

    Verifying : iptables-ipv6-1.4.7-16.el6.x86_64 304/344

    Verifying : 3:ypbind-1.20.4-33.el6.x86_64 305/344

    Verifying : 1:cpuspeed-1.5-22.el6.x86_64 306/344

    Verifying : gcalctool-5.28.2-3.el6.x86_64 307/344

    Verifying : oddjob-mkhomedir-0.30-6.el6.x86_64 308/344

    Verifying : totem-nautilus-2.28.6-4.el6.x86_64 309/344

    Verifying : yp-tools-2.9-12.el6.x86_64 310/344

    Verifying : xsane-gimp-0.997-8.el6.x86_64 311/344

    Verifying : evolution-data-server-devel-2.32.3-23.el6.x86_64 312/344

    Verifying : sssd-common-1.13.3-22.el6.x86_64 313/344

    Verifying : gnome-vfs2-smb-2.24.2-8.el6.x86_64 314/344

    Verifying : gnome-terminal-2.31.3-11.el6_6.x86_64 315/344

    Verifying : printer-filters-1.1-4.1.el6.noarch 316/344

    Verifying : hplip-common-3.14.6-3.el6.x86_64 317/344

    Verifying : device-mapper-libs-1.02.117-7.el6.x86_64 318/344

    Verifying : gucharmap-2.28.2-2.el6.x86_64 319/344

    Verifying : device-mapper-1.02.117-7.el6.x86_64 320/344

    Verifying : system-config-printer-libs-1.1.16-25.el6.x86_64 321/344

    Verifying : 1:emacs-23.1-28.el6.x86_64 322/344

    Verifying : mesa-dri-drivers-11.0.7-4.el6.x86_64 323/344

    Verifying : system-config-services-docs-1.1.8-1.el6.noarch 324/344

    Verifying : kpartx-0.4.9-93.el6.x86_64 325/344

    Verifying : gthumb-2.10.11-8.el6.x86_64 326/344

    Verifying : polkit-devel-0.96-11.el6.x86_64 327/344

    Verifying : gpfs.gpl-3.5.0-13.noarch 328/344

    Verifying : util-linux-ng-2.17.2-12.24.el6.x86_64 329/344

    Verifying : sane-backends-libs-gphoto2-1.0.21-3.el6.x86_64 330/344

    Verifying : libsane-hpaio-3.14.6-3.el6.x86_64 331/344

    Verifying : docker-io-1.7.1-2.el6.x86_64 332/344

    Verifying : 1:cups-1.4.2-74.el6.x86_64 333/344

    Verifying : sssd-ipa-1.13.3-22.el6.x86_64 334/344

    Verifying : libbonobo-devel-2.24.2-5.el6.x86_64 335/344

    Verifying : plymouth-0.8.3-29.0.1.el6.x86_64 336/344

    Verifying : b43-openfwwf-5.2-10.el6.noarch 337/344

    Verifying : pulseaudio-module-x11-0.9.21-24.el6.x86_64 338/344

    Verifying : httpd-2.2.15-53.el6.centos.x86_64 339/344

    Verifying : lua-lxc-1.0.11-1.el6.x86_64 340/344

    Verifying : xorg-x11-drv-vesa-2.3.4-1.el6.x86_64 341/344

    Verifying : xorg-x11-drv-vmmouse-13.1.0-1.el6.x86_64 342/344

    Verifying : eclipse-subclipse-1.6.5-6.el6.x86_64 343/344

    Verifying : udisks-1.0.1-9.el6.x86_64 344/344

Removed:
oraclelinux-release.x86_64 6:6Server-10.0.2
oraclelinux-release-el6.noarch 0:1.0-7.el6
redhat-release-server.x86_64 1:6Server-6.10.0.12.0.1.el6

Dependency Removed:
DeviceKit-power.x86_64 0:014-3.el6
GConf2-devel.x86_64 0:2.28.0-6.el6
NetworkManager.x86_64 1:0.8.1-107.el6
NetworkManager-gnome.x86_64 1:0.8.1-107.el6
ORBit2-devel.x86_64 0:2.14.17-5.el6
acpid.x86_64 0:1.0.10-3.el6
aic94xx-firmware.noarch 0:30-2.el6
alsa-plugins-pulseaudio.x86_64 0:1.1.0-1.el6
at.x86_64 0:3.1.10-48.el6
authconfig-gtk.x86_64 0:6.1.12-23.el6
autofs.x86_64 1:5.0.5-122.el6
b43-openfwwf.noarch 0:5.2-10.el6
biosdevname.x86_64 0:0.7.1-3.el6
bluez.x86_64 0:4.66-1.el6
brasero-nautilus.x86_64 0:2.30.3-3.el6
certmonger.x86_64 0:0.77.5-2.el6
cifs-utils.x86_64 0:4.8.1-20.el6
compiz.x86_64 0:0.8.2-24.el6
compiz-gnome.x86_64 0:0.8.2-24.el6
control-center.x86_64 1:2.28.1-40.el6
control-center-extra.x86_64 1:2.28.1-40.el6
cpuspeed.x86_64 1:1.5-22.el6
crda.x86_64 0:3.13_2015.10.22-3.el6
cronie.x86_64 0:1.4.4-15.el6_7.1
cronie-anacron.x86_64 0:1.4.4-15.el6_7.1
crontabs.noarch 0:1.10-33.el6
cryptsetup-luks.x86_64 0:1.2.0-11.el6
cryptsetup-luks-libs.x86_64 0:1.2.0-11.el6
cups.x86_64 1:1.4.2-74.el6
cyrus-sasl.x86_64 0:2.1.23-15.el6_6.2
cyrus-sasl-devel.x86_64 0:2.1.23-15.el6_6.2
desktop-effects.x86_64 0:0.8.4-7.el6
device-mapper.x86_64 0:1.02.117-7.el6
device-mapper-event.x86_64 0:1.02.117-7.el6
device-mapper-event-libs.x86_64 0:1.02.117-7.el6
device-mapper-libs.x86_64 0:1.02.117-7.el6
dhclient.x86_64 12:4.1.1-51.P1.el6.centos
dmraid.x86_64 0:1.0.0.rc16-11.el6
dmraid-events.x86_64 0:1.0.0.rc16-11.el6
dnsmasq.x86_64 0:2.48-17.el6
docker-io.x86_64 0:1.7.1-2.el6
dracut.noarch 0:004-409.el6_8.2
dracut-kernel.noarch 0:004-409.el6_8.2
ebtables.x86_64 0:2.0.9-6.el6
eclipse-callgraph.x86_64 0:0.6.1-1.el6
eclipse-oprofile.x86_64 0:0.6.1-1.el6
eclipse-rpm-editor.x86_64 0:0.5.0-2.el6
eclipse-subclipse.x86_64 0:1.6.5-6.el6
eclipse-svnkit.x86_64 0:1.3.0-3.el6
emacs.x86_64 1:23.1-28.el6
emacs-common.x86_64 1:23.1-28.el6
eog.x86_64 0:2.28.2-4.el6
epel-release.noarch 0:6-8
evince.x86_64 0:2.28.2-19.el6
evolution-data-server-devel.x86_64 0:2.32.3-23.el6
fakeroot.x86_64 0:1.12.2-22.2.el6
file-roller.x86_64 0:2.28.2-7.el6
foomatic.x86_64 0:4.0.4-5.el6_7
foomatic-db.noarch 0:4.0-7.20091126.el6
foomatic-db-ppds.noarch 0:4.0-7.20091126.el6
fuse.x86_64 0:2.8.3-5.el6
gcalctool.x86_64 0:5.28.2-3.el6
gdm.x86_64 1:2.30.4-64.el6
gdm-plugin-fingerprint.x86_64 1:2.30.4-64.el6
gdm-user-switch-applet.x86_64 1:2.30.4-64.el6
gedit.x86_64 1:2.28.4-4.el6
git.x86_64 0:1.7.1-9.el6_9
glx-utils.x86_64 0:11.0.7-4.el6
gnome-applets.x86_64 1:2.28.0-7.el6.centos
gnome-bluetooth.x86_64 0:2.28.6-8.el6
gnome-desktop-devel.x86_64 0:2.28.2-11.el6.centos
gnome-disk-utility.x86_64 0:2.30.1-3.el6
gnome-disk-utility-libs.x86_64 0:2.30.1-3.el6
gnome-disk-utility-ui-libs.x86_64 0:2.30.1-3.el6
gnome-keyring-devel.x86_64 0:2.28.2-8.el6_3
gnome-packagekit.x86_64 0:2.28.3-9.el6
gnome-panel.x86_64 0:2.30.2-16.el6
gnome-power-manager.x86_64 0:2.28.3-7.el6_4
gnome-session.x86_64 0:2.28.0-22.el6
gnome-session-xsession.x86_64 0:2.28.0-22.el6
gnome-settings-daemon.x86_64 0:2.28.2-35.el6
gnome-system-monitor.x86_64 0:2.28.0-11.el6
gnome-terminal.x86_64 0:2.31.3-11.el6_6
gnome-user-docs.noarch 0:2.28.0-4.el6
gnome-user-share.x86_64 0:2.28.2-3.el6
gnome-utils.x86_64 1:2.28.1-10.el6
gnome-vfs2-devel.x86_64 0:2.24.2-8.el6
gnome-vfs2-smb.x86_64 0:2.24.2-8.el6
gok.x86_64 0:2.28.1-5.el6
gpfs.base.x86_64 0:3.5.0-13
gpfs.gpl.noarch 0:3.5.0-13
gpfs.gplbin-2.6.32-504.12.2.el6.x86_64.x86_64 0:3.5.0-13
gpfs.gplbin-2.6.32-573.22.1.el6.x86_64.x86_64 0:3.5.0-13
gpfs.gplbin-2.6.32-642.1.1.el6.x86_64.x86_64 0:3.5.0-13
gthumb.x86_64 0:2.10.11-8.el6
gtk-doc.noarch 0:1.11-5.1.el6
gucharmap.x86_64 0:2.28.2-2.el6
gutenprint-cups.x86_64 0:5.2.5-2.el6
gvfs.x86_64 0:1.4.3-26.el6
gvfs-afc.x86_64 0:1.4.3-26.el6
gvfs-archive.x86_64 0:1.4.3-26.el6
gvfs-devel.x86_64 0:1.4.3-26.el6
gvfs-fuse.x86_64 0:1.4.3-26.el6
gvfs-gphoto2.x86_64 0:1.4.3-26.el6
gvfs-obexftp.x86_64 0:1.4.3-26.el6
gvfs-smb.x86_64 0:1.4.3-26.el6
hal.x86_64 0:0.5.14-14.el6
hal-devel.x86_64 0:0.5.14-14.el6
hal-info.noarch 0:20090716-5.el6
hpijs.x86_64 1:3.14.6-3.el6
hplip-common.x86_64 0:3.14.6-3.el6
hplip-libs.x86_64 0:3.14.6-3.el6
httpd.x86_64 0:2.2.15-53.el6.centos
ibus-qt.x86_64 0:1.3.0-2.el6
initscripts.x86_64 0:9.03.61-1.0.6.el6
ipa-client.x86_64 0:3.0.0-50.el6.centos.1
ipa-python.x86_64 0:3.0.0-50.el6.centos.1
iproute.x86_64 0:2.6.32-54.el6
iptables.x86_64 0:1.4.7-16.el6
iptables-ipv6.x86_64 0:1.4.7-16.el6
iputils.x86_64 0:20071127-21.el6
iscsi-initiator-utils.x86_64 0:6.2.0.873-21.el6
kbd.x86_64 0:1.15-11.el6
kexec-tools.x86_64 0:2.0.0-300.el6
kpartx.x86_64 0:0.4.9-93.el6
libacl-devel.x86_64 0:2.2.49-6.el6
libbonobo-devel.x86_64 0:2.24.2-5.el6
libbonoboui-devel.x86_64 0:2.24.2-3.el6
libcanberra-devel.x86_64 0:0.22-3.el6
libcgroup.x86_64 0:0.40.rc1-17.el6_7
libcgroup-devel.x86_64 0:0.40.rc1-17.el6_7
libdrm.x86_64 0:2.4.65-2.el6
libdrm-devel.x86_64 0:2.4.65-2.el6
libgdata-devel.x86_64 0:0.6.4-2.el6
libgnome-devel.x86_64 0:2.28.0-11.el6
libgnomecanvas-devel.x86_64 0:2.26.0-4.el6
libgnomeui-devel.x86_64 0:2.24.1-4.el6
libgpod.x86_64 0:0.7.2-6.el6
libgweather-devel.x86_64 0:2.28.0-5.el6
libmtp.x86_64 0:1.0.1-2.el6
libsane-hpaio.x86_64 0:3.14.6-3.el6
libsmbclient.x86_64 0:3.6.23-35.el6_8
libvirt.x86_64 0:0.10.2-60.el6
libvirt-client.x86_64 0:0.10.2-60.el6
libvirt-devel.x86_64 0:0.10.2-60.el6
libvirt-java.noarch 0:0.4.9-1.el6
libvirt-java-devel.noarch 0:0.4.9-1.el6
libvirt-python.x86_64 0:0.10.2-60.el6
lua-lxc.x86_64 0:1.0.11-1.el6
lvm2.x86_64 0:2.02.143-7.el6
lvm2-libs.x86_64 0:2.02.143-7.el6
lxc.x86_64 0:1.0.11-1.el6
lxc-libs.x86_64 0:1.0.11-1.el6
mdadm.x86_64 0:3.3.4-1.el6
media-player-info.noarch 0:6-1.el6
mesa-dri-drivers.x86_64 0:11.0.7-4.el6
mesa-dri1-drivers.x86_64 0:7.11-8.el6
mesa-libEGL.x86_64 0:11.0.7-4.el6
mesa-libGL.x86_64 0:11.0.7-4.el6
mesa-libGL-devel.x86_64 0:11.0.7-4.el6
mesa-libGLU.x86_64 0:11.0.7-4.el6
mesa-libGLU-devel.x86_64 0:11.0.7-4.el6
mesa-libGLw.x86_64 0:6.5.1-10.el6
mesa-libGLw-devel.x86_64 0:6.5.1-10.el6
mesa-libgbm.x86_64 0:11.0.7-4.el6
mesa-libxatracker.x86_64 0:11.0.7-4.el6
metacity.x86_64 0:2.28.0-23.el6
microcode_ctl.x86_64 1:1.17-21.el6
nautilus.x86_64 0:2.28.4-25.el6
nautilus-extensions.x86_64 0:2.28.4-25.el6
nautilus-open-terminal.x86_64 0:0.17-4.el6
nautilus-sendto.x86_64 0:2.28.2-4.el6
net-snmp.x86_64 1:5.5-57.el6
nfs-utils.x86_64 1:1.2.3-70.el6
nfs-utils-lib.x86_64 0:1.1.5-11.el6
ntp.x86_64 0:4.2.6p5-10.el6.centos.1
ntpdate.x86_64 0:4.2.6p5-10.el6.centos.1
numad.x86_64 0:0.5-12.20150602git.el6
oddjob.x86_64 0:0.30-6.el6
oddjob-mkhomedir.x86_64 0:0.30-6.el6
openldap-devel.x86_64 0:2.4.40-12.el6
openssh.x86_64 0:5.3p1-118.1.el6_8
openssh-askpass.x86_64 0:5.3p1-118.1.el6_8
openssh-clients.x86_64 0:5.3p1-118.1.el6_8
openssh-server.x86_64 0:5.3p1-118.1.el6_8
orca.x86_64 0:2.28.2-1.el6
parted.x86_64 0:2.1-29.el6
pcmciautils.x86_64 0:015-4.2.el6
perl-Git.noarch 0:1.7.1-9.el6_9
phonon-backend-gstreamer.x86_64 1:4.6.2-28.el6_5
plymouth.x86_64 0:0.8.3-29.0.1.el6
plymouth-gdm-hooks.x86_64 0:0.8.3-29.0.1.el6
plymouth-utils.x86_64 0:0.8.3-29.0.1.el6
pm-utils.x86_64 0:1.2.5-11.el6
policycoreutils.x86_64 0:2.0.83-29.el6
polkit-devel.x86_64 0:0.96-11.el6
polkit-docs.x86_64 0:0.96-11.el6
postfix.x86_64 2:2.6.6-6.el6_7.1
postgresql.x86_64 0:8.4.20-6.el6
postgresql-devel.x86_64 0:8.4.20-6.el6
prelink.x86_64 0:0.4.6-3.1.el6_4
printer-filters.noarch 0:1.1-4.1.el6
ptouch-driver.x86_64 0:1.3-2.1.el6
pulseaudio.x86_64 0:0.9.21-24.el6
pulseaudio-gdm-hooks.x86_64 0:0.9.21-24.el6
pulseaudio-module-bluetooth.x86_64 0:0.9.21-24.el6
pulseaudio-module-gconf.x86_64 0:0.9.21-24.el6
pulseaudio-module-x11.x86_64 0:0.9.21-24.el6
python-iwlib.x86_64 0:0.1-1.2.el6
python-virtinst.noarch 0:0.600.0-29.el6
qemu-kvm.x86_64 2:0.12.1.2-2.491.el6_8.1
qt-devel.x86_64 1:4.6.2-28.el6_5
qt-x11.x86_64 1:4.6.2-28.el6_5
qt3-devel.x86_64 0:3.3.8b-30.el6
quota.x86_64 1:3.17-23.el6
radvd.x86_64 0:1.6-1.el6
rarian.x86_64 0:0.8.1-5.1.el6
rarian-compat.x86_64 0:0.8.1-5.1.el6
readahead.x86_64 1:1.5.6-2.el6
rear.x86_64 0:1.17.2-4.el6
redhat-lsb.x86_64 0:4.0-7.el6.centos
redhat-lsb-compat.x86_64 0:4.0-7.el6.centos
redhat-lsb-core.x86_64 0:4.0-7.el6.centos
redhat-lsb-graphics.x86_64 0:4.0-7.el6.centos
redhat-lsb-printing.x86_64 0:4.0-7.el6.centos
rhythmbox.x86_64 0:0.12.8-1.el6
rng-tools.x86_64 0:5-2.el6_7
rp-pppoe.x86_64 0:3.10-16.el6
rpmdevtools.noarch 0:7.5-2.el6
rsyslog.x86_64 0:5.8.10-10.el6_6
samba-client.x86_64 0:3.6.23-35.el6_8
samba-common.x86_64 0:3.6.23-35.el6_8
samba-winbind.x86_64 0:3.6.23-35.el6_8
samba-winbind-clients.x86_64 0:3.6.23-35.el6_8
sane-backends.x86_64 0:1.0.21-3.el6
sane-backends-libs.x86_64 0:1.0.21-3.el6
sane-backends-libs-gphoto2.x86_64 0:1.0.21-3.el6
sane-frontends.x86_64 0:1.0.14-9.2.el6
seahorse.x86_64 0:2.28.1-4.el6
setuptool.x86_64 0:1.19.9-4.el6
smartmontools.x86_64 1:5.43-1.el6
sound-juicer.x86_64 0:2.28.1-6.el6
spice-vdagent.x86_64 0:0.14.0-11.el6
sssd.x86_64 0:1.13.3-22.el6
sssd-ad.x86_64 0:1.13.3-22.el6
sssd-common.x86_64 0:1.13.3-22.el6
sssd-common-pac.x86_64 0:1.13.3-22.el6
sssd-ipa.x86_64 0:1.13.3-22.el6
sssd-krb5.x86_64 0:1.13.3-22.el6
sssd-krb5-common.x86_64 0:1.13.3-22.el6
sssd-ldap.x86_64 0:1.13.3-22.el6
sssd-proxy.x86_64 0:1.13.3-22.el6
subversion.x86_64 0:1.6.11-15.el6_7
subversion-javahl.x86_64 0:1.6.11-15.el6_7
svnkit.x86_64 0:1.3.0-3.el6
sysstat.x86_64 0:9.0.4-31.el6
system-config-date.noarch 0:1.9.60-2.el6.centos
system-config-date-docs.noarch 0:1.0.11-1.el6
system-config-firewall.noarch 0:1.2.27-7.2.el6_6
system-config-firewall-base.noarch 0:1.2.27-7.2.el6_6
system-config-firewall-tui.noarch 0:1.2.27-7.2.el6_6
system-config-kdump.noarch 0:2.0.5-18.el6
system-config-keyboard.x86_64 0:1.3.1-6.el6
system-config-network-tui.noarch 0:1.6.0.el6.3-4.el6
system-config-printer.x86_64 0:1.1.16-25.el6
system-config-printer-libs.x86_64 0:1.1.16-25.el6
system-config-printer-udev.x86_64 0:1.1.16-25.el6
system-config-services.noarch 0:0.99.45-1.el6.3
system-config-services-docs.noarch 0:1.1.8-1.el6
system-config-users.noarch 0:1.2.106-8.el6
system-config-users-docs.noarch 0:1.0.8-2.el6
system-setup-keyboard.x86_64 0:0.7-4.el6
systemtap.x86_64 0:2.9-7.el6
systemtap-client.x86_64 0:2.9-7.el6
totem.x86_64 0:2.28.6-4.el6
totem-nautilus.x86_64 0:2.28.6-4.el6
udev.x86_64 0:147-2.73.el6
udisks.x86_64 0:1.0.1-9.el6
usermode.x86_64 0:1.102-3.el6
usermode-gtk.x86_64 0:1.102-3.el6
util-linux-ng.x86_64 0:2.17.2-12.24.el6
virt-manager.x86_64 0:0.9.0-31.el6
virt-top.x86_64 0:1.0.4-3.15.el6
virt-viewer.x86_64 0:2.0-14.el6
virt-what.x86_64 0:1.11-1.2.el6
wacomexpresskeys.x86_64 0:0.4.2-3.el6
wireless-tools.x86_64 1:29-6.el6
wpa_supplicant.x86_64 1:0.7.3-8.el6
xmlto.x86_64 0:0.0.23-3.el6
xorg-x11-drivers.x86_64 0:7.3-13.4.el6
xorg-x11-drv-acecad.x86_64 0:1.5.0-8.el6
xorg-x11-drv-aiptek.x86_64 0:1.4.1-6.el6
xorg-x11-drv-apm.x86_64 0:1.2.5-11.el6
xorg-x11-drv-ast.x86_64 0:1.1.5-1.el6
xorg-x11-drv-ati.x86_64 0:7.6.1-2.el6
xorg-x11-drv-cirrus.x86_64 0:1.5.3-1.el6
xorg-x11-drv-dummy.x86_64 0:0.3.6-16.el6
xorg-x11-drv-elographics.x86_64 0:1.4.1-4.el6
xorg-x11-drv-evdev.x86_64 0:2.9.2-1.el6
xorg-x11-drv-fbdev.x86_64 0:0.4.3-17.el6
xorg-x11-drv-fpit.x86_64 0:1.4.0-7.el6
xorg-x11-drv-glint.x86_64 0:1.2.8-11.el6
xorg-x11-drv-hyperpen.x86_64 0:1.4.1-6.el6
xorg-x11-drv-i128.x86_64 0:1.3.6-11.el6
xorg-x11-drv-i740.x86_64 0:1.3.4-12.el6
xorg-x11-drv-intel.x86_64 0:2.99.917-0.4.20151111.el6
xorg-x11-drv-keyboard.x86_64 0:1.8.1-1.el6
xorg-x11-drv-mach64.x86_64 0:6.9.4-10.el6
xorg-x11-drv-mga.x86_64 0:1.6.3-9.el6
xorg-x11-drv-mouse.x86_64 0:1.9.1-1.el6
xorg-x11-drv-mutouch.x86_64 0:1.3.0-6.el6
xorg-x11-drv-nouveau.x86_64 1:1.0.12-1.el6
xorg-x11-drv-nv.x86_64 0:2.1.20-6.el6
xorg-x11-drv-openchrome.x86_64 0:0.3.3-7.el6
xorg-x11-drv-penmount.x86_64 0:1.5.0-6.el6
xorg-x11-drv-qxl.x86_64 0:0.1.1-19.el6
xorg-x11-drv-r128.x86_64 0:6.10.0-1.el6
xorg-x11-drv-rendition.x86_64 0:4.2.6-1.el6
xorg-x11-drv-s3virge.x86_64 0:1.10.7-1.el6
xorg-x11-drv-savage.x86_64 0:2.3.7-3.el6
xorg-x11-drv-siliconmotion.x86_64 0:1.7.8-1.el6
xorg-x11-drv-sis.x86_64 0:0.10.8-1.el6
xorg-x11-drv-sisusb.x86_64 0:0.9.6-11.el6
xorg-x11-drv-synaptics.x86_64 0:1.8.3-1.el6
xorg-x11-drv-tdfx.x86_64 0:1.4.6-1.el6
xorg-x11-drv-trident.x86_64 0:1.3.6-11.el6
xorg-x11-drv-v4l.x86_64 0:0.2.0-37.el6
xorg-x11-drv-vesa.x86_64 0:2.3.4-1.el6
xorg-x11-drv-vmmouse.x86_64 0:13.1.0-1.el6
xorg-x11-drv-vmware.x86_64 0:13.1.0-2.el6
xorg-x11-drv-void.x86_64 0:1.4.1-1.el6
xorg-x11-drv-voodoo.x86_64 0:1.2.5-11.el6
xorg-x11-drv-wacom.x86_64 0:0.32.0-1.el6
xorg-x11-drv-xgi.x86_64 0:1.6.1-1.el6
xorg-x11-server-Xorg.x86_64 0:1.17.4-9.el6.centos
xsane.x86_64 0:0.997-8.el6
xsane-gimp.x86_64 0:0.997-8.el6
yelp.x86_64 0:2.28.1-17.el6_3
yp-tools.x86_64 0:2.9-12.el6
ypbind.x86_64 3:1.20.4-33.el6
zenity.x86_64 0:2.28.0-1.el6

Complete!

Migration from CentOS 8, after reboots it fails to start

I've been trying to migrate CentOS 8 to Oracle Linux, everything went fine when disabling the non-repo, but when rebooting, the server couldn't start on the EFI boot. It says failed without showing the grub menu.

Did a recover with ReaR after each failed time to find out why.
I figured the EFI Boot wasn't on sda, but sdb.

It fixed my issue
efibootmgr -c -d /dev/sdb -p 1 -L "Oracle Linux" -l "\EFI\redhat\shimx64.efi"

I'm wondering if the script can be changed to detect the location of the EFI partition ?

If yum.conf is modified prior to switching, it is not replaced rpm yum so it still has distroverpkg=centos-release

CentOS 7.

wget https://raw.githubusercontent.com/oracle/centos2ol/main/centos2ol.sh
--2021-01-25 00:06:54--  https://raw.githubusercontent.com/oracle/centos2ol/main/centos2ol.sh
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.0.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 20588 (20K) [text/plain]
Saving to: ‘centos2ol.sh’
100%[===================================================================================================================================================================================================>] 20,588      --.-K/s   in 0.002s
2021-01-25 00:06:54 (9.55 MB/s) - ‘centos2ol.sh’ saved [20588/20588]
[root@bitrix /]# sudo bash centos2ol.sh -V

Bitrix.zip

A similar problem was discussed
#51

Could not install base packages.
Run 'yum distro-sync' to manually install them.
For assistance, please open an issue via GitHub: https://github.com/oracle/centos2ol/.


[root@bitrix /]# yum distro-sync
Loaded plugins: etckeeper, fastestmirror, merge-conf
Loading mirror speeds from cached hostfile
epel/x86_64/metalink                                                                                                                                                                                                  |  33 kB  00:00:00
 * epel: mirror.cspacehostings.com
 * remi: mirror.awanti.com
 * remi-php72: mirror.awanti.com
 * remi-safe: mirror.awanti.com
bitrix                                                                                                                                                                                                                | 2.9 kB  00:00:00
ol7_UEKR6                                                                                                                                                                                                             | 2.5 kB  00:00:00
ol7_latest                                                                                                                                                                                                            | 2.7 kB  00:00:00
http://repo.percona.com/percona/yum/release/%24releasever/RPMS/noarch/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.
To address this issue please refer to the below wiki article

https://wiki.centos.org/yum-errors

If above article doesn't help to resolve this issue please use https://bugs.centos.org/.



 One of the configured repositories failed (Percona Original release/noarch YUM repository),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Run the command with the repository temporarily disabled
            yum --disablerepo=percona-release-noarch ...

     4. Disable the repository permanently, so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:

            yum-config-manager --disable percona-release-noarch
        or
            subscription-manager repos --disable=percona-release-noarch

     5. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=percona-release-noarch.skip_if_unavailable=true

failure: repodata/repomd.xml from percona-release-noarch: [Errno 256] No more mirrors to try.
http://repo.percona.com/percona/yum/release/$releasever/RPMS/noarch/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found

Error after reboot machine

Good afternoon,

After following your tutorial to switch from CentOS 7 to Oracle Linux, I found an error.

I do everything right and there is no problem. It turns out that when I reboot, the machine no longer starts me and gives the following errors:

  • Failed to open \ EPI \ centos \ grubx64.efi - Not Found
    Falied to load image \ EPI \ centos \ grubx64.efi - Not Found
    start_image () returned Not Found

Can you help, please?

Thanks!

errro_centos8

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.