Showing posts with label CentOS. Show all posts
Showing posts with label CentOS. Show all posts

October 08, 2021

How to Fix MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"

Solving MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"?

Had this error creep up after restoring a VM from backup and changing the machine name. I did a quick search and stumbled upon a whole slew of solutions that did not work until I finally saw this article and found that the second solution it offers worked for me.

It a very simple solution to what I thought was going to be a huge headache. Here it is:

  • Navigate to your SQL server data folder.
    • This is the typical Redhat/CentOS path /var/lib/mysql for those with similar systems.
  • Look for these log files named like, ib_logfile0 and ib_logfile1
    • All you need to do is rename or move those log files  to some other folder.
      • Stop and start the MySQL service
        • Tadaaa! It worked for me. MySQL server started humming along as expected again.


        Original solution article link: Click here for it.



        Share:

        August 04, 2021

        Quick HTTP to HTTPS - Apache2

        There are several methods for redirecting your Apache-based website visitors who might type your servers URL using the plain (non-secure) HTTP protocol to be sent to the encrypted HTTPS version of your website which effectively, forces any visitor to your website to HTTPS.

        The method below is my favorite for its simplicity and my own experience with it that it worked 100% of the time.

        Before adding the redirection code to your Apache's config file you'd obviously need to have a working Apache and SSL configuration for your website, preferably with a valid SSL certificate. Once that condition is satisfied, the next step is to make sure that you have Apache's rewrite module installed and loaded.

        You could quickly find out if your serve has the rewrite module installed and loaded by running the following command: apache2ctl -M 

        The above command will return a list of installed & loaded modules, look for the following entryrewrite_module

        Or, you could run the command this way: apache2ctl -M|grep rewrite which will give you this output - assuming that you do have the rewrite module installed and loaded-

        rewrite_module (shared)

        if not, then you need to add this module by following the instructions for your particular O.S flavor

        First and last step for sending HTTP to HTTPS:

        All you need to do is insert the following 3 lines into the <virtual host> usually located in /etc/apache2/sites-enabled/000-default.conf on Ubuntu based servers and in  /etc/httpd/conf/httpd.conf in Redhat-based servers like CENTOS using your favorite editor:

        RewriteEngine On
        RewriteCond %{HTTPS} off
        RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}

        Save your conf file and run /usr/sbin/apache2ctl configtest to make sure that your conf file is free of syntax errors before you reload Apache. Once the configtest returns the result of "Syntax OK" you can run /usr/sbin/apache2ctl restart to apply your changes.

        Finally, verify your work results by accessing the website you modified via your browser and make sure to call the website using http://your-server.com and watch your browser redirect you to the https://your-server.com




        Share:

        July 17, 2020

        Error: Rpmdb changed underneath us

        Problem:

        Ran into this error while attempting to apply a yum update on a CentOS 6 machine to update its kernel packages.
        Error: Rpmdb changed underneath us 
        The same scenario applies if you get this error as well:
        error: can not open Packages database in /var/lib/rpm

        Cause:

        The problem has to do with corruption in the RPM database files under the /var/lib/rpm directory.

        Solution:

        • Check for any processes that might be currently running and having a lock on the rpm database and kill them if they exist:
          • ps -aufx | grep /var/lib/rpm
        • Delete the temporary DB files:
          • rm -fv /var/lib/rpm/__*\
        • Rebuild your server RPM database using the below command:
          • rpm --rebuilddb -v -v

        After completing these steps, attempt to run a "yum update" again and it most likely would work fine now. 
        It worked for me.



        Original Solution Post:
        Share:

        April 29, 2020

        Postfix fails with (error: postdrop: warning: mail_queue_enter: create file maildrop/randomfilename.xxxxx: Permission denied)

        Problem: Postfix delivery fails with error

        (postdrop: warning: mail_queue_enter: create file maildrop/randomfilename.xxxxx: Permission denied)


        ** see note below

        Cause:

        /usr/sbin/postdrop has incorrect permissions. 
        Correct the permissions for /usr/sbin/postdrop are as follows:
        # ll /usr/sbin/postdrop

        -rwxr-sr-x. 1 root postdrop 180808 Aug 23  2018 /usr/sbin/postdrop

        Solution:

        Fix permissions with the following:


        rpm --setperms postfix
        rpm --setugids postfix

        In order to prepare for this next part, you need to make sure that you have the yum-plugin-verify.noarch installed from your standard CentOS or RedHat YUM repository.

        You can figure out the default permissions for whatever file that maybe having a permissions issue on your Linux system.

        To prepare for this task, you need to make sure that you have the yum plugin
        by doing the following:
        • figure out which package provides the file you are troubleshooting.
          • On my CentOS 6 system, this can be accomplished by running the command 
          • rpm -q --whatprovides /usr/sbin/postdrop which will produce the following output indicating the package name that provided our postdrop file when it was installed:
            • postfix-2.6.6-8.el6.x86_64
          • Next step is to run the yum verify-all command against the package name to see the default ownership & permissions for its files as follows:
          • yum verify-all postfix-2.6.6-8.el6.x86_64 
          • The command above will produce something similar to the following output:

        • Just please not that this screenshot is not indicative of the problem at hand because the permissions issues were fixed. This screenshot part is only complaining about checksums & mtime values since this postfix install was updated and modified multiple times.

        Share:

        April 27, 2020

        resolv.conf reverts to old DNS entries

        /etc/resolv.conf keeps reverting back to its old entries after updating your DNS server list whether manually or via the setup front-end tool for setting up your Network, authentication, services etc on RHEL or CentOS version 5,6,7.

        The solution comes from Redhat's KB article entitled "How to make persistent changes to the /etc/resolv.conf?"https://access.redhat.com/solutions/7412


        The issue is that DNS servers in /etc/resolv.conf changed after a reboot or network service restart.

        If a single ifcfg-file both specifies a nameserver using DNS1 and also gets a nameserver via DHCP, both nameservers will be placed in resolv.conf.


        Root Cause:

        - From the script /etc/sysconfig/network-scripts/ifdown-post if the "RESOLV_MODS=no" or "PEERDNS=no" is not present in the relevant /etc/sysconfig/network-scripts/ifcfg-* files, the contents of /etc/resolv.conf could get overwritten with /etc/resolv.conf.save.
        - /etc/sysconfig/network-scripts/ifup-post script, checks for the presence of "RESOLV_MODS=no" or "PEERDNS=no"


        Resolution:

        The change in my situation was due to the ifcfg-eth0 file directives DNS1 and DNS2 which lead to modification of resolv.conf

        In my particular situation, the solution was to mark the /etc/resolv.conf as immutable with this command:

        chattr +i /etc/resolv.conf
        to prevent any tool or configuration from modifying it.

        For diagnosing the issue, look for entries similar to the following in your /var/log/messages:

        Oct 14 12:40:52 hostname NET[22961]: /etc/sysconfig/network-scripts/ifdown-post : updated /etc/resolv.conf
        Oct 14 12:40:57 hostname NET[23256]: /etc/sysconfig/network-scripts/ifup-post : updated /etc/resolv.conf

        Share:

        December 18, 2018

        Can't delete a symbolic link to a Linux directory!!

        I've come across this issue once where I wanted to delete a symbolically linked directory (named foo for this example) on a CentOS box using the "rm" command, and I got this error message:

        rm: cannot remove `foo/': Is a directory

        which was a little frustrating although simple enough to resolve.

        The mistake that led to generating this error message is that I used the autocomplete line by using the tab key to finish off the name of the directory, which is fine for most purposes, but in this particular instance of removing a symbolic link, it introduced an undesirable factor which is the forward slash tacked to the end of the directory name.
        So the typed command looked like this: rm foo/ instead of just this rm foo

        Basically, the RM command in bash refused to unlink the symbolic link because it saw it as a directory with content within.

        So just in case someone else comes across this same issue, all you need to do is remove the trailing slash from the end of your command and the rm command will successfully remove your symbolically linked directory without any fuss.

        Another approach is to use the "unlink" command followed by the name of your symbolic link and it'll also work just fine. Just note that the "unlink" command also will generate an error if it sees a trailing slash after the directory name.

        So the correct syntax for removing a symbolically linked directory is this:

        rm foo

        Or

        unlink foo

        Share:

        August 01, 2018

        Delete Postfix queued emails From/To specific user


        mailq | tail -n +2 | awk 'BEGIN { RS = "" } / user@domain\.com$/ { print $1 }' | tr -d '*!' | postsuper -d -

        Or, if using sudo, just add sudo to the part immediately preceding "postsuper":


        mailq | tail -n +2 | awk 'BEGIN { RS = "" } / user@domain\.com$/ { print $1 }' | tr -d '*!' | sudo postsuper -d -


        Note: This command line was run on a CentOS 6.10 box with Postfix version 2.6.6
        Share:

        July 11, 2017

        How to Install JAVA 8 (JDK/JRE 8u131) on CentOS/RHEL 7/6 and Fedora

        After a long wait, finally Java SE Development Kit 8 is available to download. JDK 8 has been released on Mar,18 2014 for general availability with the many featured enhancements. You can find all the enhancements in JDK 8 here.
        This article will help you to Install JAVA 8 (JDK/JRE 8u131) or update on your system. Read the instruction carefully before downloading Java from Linux command line. To Install Java 8 in Ubuntu and LinuxMint read This Article.


        Downloading Latest Java Archive

        Download latest Java SE Development Kit 8 release from its official download page or use following commands to download from shell.

        For 64Bit

        # cd /opt/
        # wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-linux-x64.tar.gz"
        
        # tar xzf jdk-8u131-linux-x64.tar.gz
        

        For 32Bit

        # cd /opt/
        # wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-linux-i586.tar.gz"
        
        # tar xzf jdk-8u131-linux-i586.tar.gz 

        Install Java with Alternatives

        After extracting archive file use alternatives command to install it. alternatives command is available in chkconfig package.
        # cd /opt/jdk1.8.0_131/
        # alternatives --install /usr/bin/java java /opt/jdk1.8.0_131/bin/java 2
        # alternatives --config java
        
        
        There are 3 programs which provide 'java'.
        
          Selection    Command
        -----------------------------------------------
        *  1           /opt/jdk1.7.0_71/bin/java
         + 2           /opt/jdk1.8.0_45/bin/java
           3           /opt/jdk1.8.0_91/bin/java
           4           /opt/jdk1.8.0_131/bin/java
        
        Enter to keep the current selection[+], or type selection number: 4
        
        
        At this point JAVA 8 has been successfully installed on your system. We also recommend to setup javac and jar commands path using alternatives
        # alternatives --install /usr/bin/jar jar /opt/jdk1.8.0_131/bin/jar 2
        # alternatives --install /usr/bin/javac javac /opt/jdk1.8.0_131/bin/javac 2
        # alternatives --set jar /opt/jdk1.8.0_131/bin/jar
        # alternatives --set javac /opt/jdk1.8.0_131/bin/javac 

        Check Installed Java Version

        Check the installed Java version on your system using following command.
        root@tecadmin ~# java -version
        
        java version "1.8.0_131"
        Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
        Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode) 

        Configuring Environment Variables

          Most of Java based application’s uses environment variables to work. Set the Java environment variables using following commands

        • Setup JAVA_HOME Variable
        • # export JAVA_HOME=/opt/jdk1.8.0_131
          
        • Setup JRE_HOME Variable
        • # export JRE_HOME=/opt/jdk1.8.0_131/jre
          
        • Setup PATH Variable
        • # export PATH=$PATH:/opt/jdk1.8.0_131/bin:/opt/jdk1.8.0_131/jre/bin
          
        Also put all above environment variables in /etc/environment file for auto loading on system boot.

        Article Source & Credit:
        Original article posted at the following URL: 
        https://tecadmin.net/install-java-8-on-centos-rhel-and-fedora/
        Share:

        April 07, 2016

        Too many files open - RHEL 5-7



        RHEL 5,6,7

        Issue

        • How to correct the error "Too many files open"
        • Error during login "Too many open files" and the session gets terminated automatically.

        Resolution

        • This error is generated when the open file limit for a user or system exceeds the default setting.

        SYSTEM Wide settings

        • To see the settings for maximum open files for the OS level, use following command:
              # cat /proc/sys/fs/file-max
          
        • This value means that the maximum number of files all processes running on the system can open. By default this number will automatically vary according to the amount of RAM in the system. As a rough guideline it will be approximately 100000 files per GB of RAM, so something like 400000 files on a 4GB machine and 1600000 on a 16GB machine. To change the system wide maximum open files, as root edit the /etc/sysctl.conf and add the following to the end of the file:
              fs.file-max = 495000
          
          Note: The above example will set the maximum number of files to 495,000 and will take effect when the system is rebooted.
        • Then issue the following command to activate this change to the live system:
              # sysctl -p
          

        Per USER Settings

        • To see the setting for maximum open files for a user, as root issue the following commands:
              # su - <user>
              $ ulimit -n
          
        • The default setting for this is usually 1024. If more is needed for a specific user then as root modify it in the /etc/security/limits.conf file:
              user - nofile 2048
          
          This will set the maximum open files for the specific "user" to 2048 files.
        ** WARNING **
        The limits module that handles the setting of these values first reads /etc/security/limits.conf and then reads each file matching/etc/security/limits.d/*.conf This means that any changes you make in /etc/security/limits.conf may be overridden by a subsequent file. These files should be reviewed as a set to ensure they meet your requirements.
        • To do a system wide increase for all users then as root edit /etc/security/limits.conf file and add the following:
              * - nofile 2048
          
        • This sets the maximum open files for ALL users to 2048 files. These setting will require a reboot to become active.
        Share:

        January 16, 2015

        Header V3 RSA/SHA1 Signature, key ID BAD - Bug Resolved


        For CentOS servers an update for the nss-softokn package was release today – nss-softokn-3.14.3-19However, nss-softokn-3.14.3-19 needs nss-softokn-freebl-3.14.3-19 to operate properly, and vice versa, but those packages do not have checks in place to make sure that a matching version of the other package are also installed.

        Thus if you yum update only installed one of the packages you will end up with a broken YUM and RPM.

        You might see error messages like these when trying to run YUM and RPM commands:

        error: rpmts_HdrFromFdno: Header V3 RSA/SHA1 Signature, key ID xxx BAD

        error: rpmdbNextIterator: skipping h# 1784 Header V3 RSA/SHA1 Signature, key ID xxx BAD


        Most of the time you will have had nss-softokn-3.14.3-19 installed but not nss-softokn-freebl-3.14.3-19

        To fix this you have to:

        1. Manually download nss-softokn-freebl-3.14.3-19


        yumdownloader nss-softokn-freebl

        or wget the RPMs

        64-Bit servers / x86_64 run

        wget ftp://195.220.108.108/linux/centos/6.6/updates/x86_64/Packages/nss-softokn-freebl-3.14.3-19.el6_6.x86_64.rpm

        32-Bit Servers / i686 run

        wget ftp://195.220.108.108/linux/centos/6.6/updates/i386/Packages/nss-softokn-freebl-3.14.3-19.el6_6.i686.rpm

        Note: The FTP IP address above grabs the rpm package from an RPMFIND mirror in France, but you can get it from any other mirror that you usually use.

        2. Extract the RPM

        64-Bit servers / x86_64 run

        rpm2cpio nss-softokn-freebl-3.14.3-19.el6_6.x86_64.rpm | cpio -idmv

        32-Bit Servers / i686 run

        rpm2cpio nss-softokn-freebl-3.14.3-19.el6_6.i686.rpm | cpio -idmv

        3. Copy .libfreeblpriv3.* to correct location

        64-Bit servers / x86_64 run

        cp ./lib64/libfreeblpriv3.* /lib64

        32-Bit Servers / i686 run

        cp ./lib/libfreeblpriv3.* /lib


        4. Rerun Yum Update to update nss-softokn-freebl and FIX YUM and RPM

        yum update

        -----------------------------------------------------------------------------------

        Bug Report: https://bugzilla.redhat.com/show_bug.cgi?id=1182337


        Share:

        October 09, 2014

        YUM:: Remove software that has multiple RPM packages

        Using the spacewalk software package as an example.

        The Command:
        yum remove spacewalk\*
        The above "yum" command  removes all RPM packages -with the prefix "spacewalk" in their name - that were added upon installation along with their dependency packages. So be careful to ensure that those dependencies aren't shared with another piece of software on your system before you blow them all off of your machine and end up with broken software that relies on their existence.

        The simplest way to check package dependencies is to first run:
        yum -q deplis yourpackagename


        Here is a screenshot of the command and its output for removing the spacewalk software:


        yum remove spacewalk\*
        
        Loaded plugins: allowdowngrade, fastestmirror, replace
        
        Setting up Remove Process
        
        Resolving Dependencies
        
        --> Running transaction check
        
        ---> Package spacewalk-admin.noarch 0:2.1.2-1.el5 set to be erased
        
        ---> Package spacewalk-backend.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-app.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-applet.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-config-files.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-config-files-common.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-config-files-tool.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-iss.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-iss-export.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-libs.noarch 0:2.1.56-1.el5 set to be erased
        
        --> Processing Dependency: spacewalk-backend-libs >= 1.7.17 for package: rhnpush
        
        ---> Package spacewalk-backend-package-push-server.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-server.noarch 0:2.1.56-1.el5 set to be erased
        
        --> Processing Dependency: spacewalk-backend-server >= 1.2.32 for package: osa-dispatcher
        
        ---> Package spacewalk-backend-sql.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-sql-postgresql.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-tools.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-xml-export-libs.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-backend-xmlrpc.noarch 0:2.1.56-1.el5 set to be erased
        
        ---> Package spacewalk-base.noarch 0:2.1.60-1.el5 set to be erased
        
        ---> Package spacewalk-base-minimal.noarch 0:2.1.60-1.el5 set to be erased
        
        --> Processing Dependency: perl(PXT::Config) for package: status_log_acceptor
        
        --> Processing Dependency: perl(PXT::Config) for package: SatConfig-general
        
        --> Processing Dependency: perl(RHN::DB) for package: nocpulse-db-perl
        
        --> Processing Dependency: perl(RHN::DBI) for package: NPalert
        
        --> Processing Dependency: perl(RHN::DBI) for package: status_log_acceptor
        
        --> Processing Dependency: perl(RHN::DBI) for package: perl-NOCpulse-OracleDB
        
        --> Processing Dependency: perl(RHN::DBI) for package: nocpulse-common
        
        ---> Package spacewalk-base-minimal-config.noarch 0:2.1.60-1.el5 set to be erased
        
        ---> Package spacewalk-branding.noarch 0:2.1.33-1.el5 set to be erased
        
        ---> Package spacewalk-certs-tools.noarch 0:2.1.6-1.el5 set to be erased
        
        ---> Package spacewalk-client-repo.noarch 0:2.1-2.el5 set to be erased
        
        ---> Package spacewalk-common.noarch 0:2.0.1-1.el5 set to be erased
        
        ---> Package spacewalk-config.noarch 0:2.1.5-1.el5 set to be erased
        
        ---> Package spacewalk-doc-indexes.noarch 0:2.1.2-1.el5 set to be erased
        
        ---> Package spacewalk-grail.noarch 0:2.1.60-1.el5 set to be erased
        
        ---> Package spacewalk-html.noarch 0:2.1.60-1.el5 set to be erased
        
        ---> Package spacewalk-java.noarch 0:2.1.169-1.el5 set to be erased
        
        ---> Package spacewalk-java-config.noarch 0:2.1.169-1.el5 set to be erased
        
        ---> Package spacewalk-java-lib.noarch 0:2.1.169-1.el5 set to be erased
        
        ---> Package spacewalk-java-postgresql.noarch 0:2.1.169-1.el5 set to be erased
        
        ---> Package spacewalk-monitoring.noarch 0:2.0.1-1.el5 set to be erased
        
        ---> Package spacewalk-monitoring-selinux.noarch 0:2.0.1-1.el5 set to be erased
        
        ---> Package spacewalk-postgresql.noarch 0:2.0.1-1.el5 set to be erased
        
        ---> Package spacewalk-pxt.noarch 0:2.1.60-1.el5 set to be erased
        
        ---> Package spacewalk-repo.noarch 0:2.1-2.el5 set to be erased
        
        ---> Package spacewalk-schema.noarch 0:2.1.51-1.el5 set to be erased
        
        ---> Package spacewalk-search.noarch 0:2.1.14-1.el5 set to be erased
        
        ---> Package spacewalk-selinux.noarch 0:2.0.1-1.el5 set to be erased
        
        --> Processing Dependency: spacewalk-selinux for package: osa-dispatcher-selinux
        
        --> Processing Dependency: spacewalk-selinux for package: osa-dispatcher-selinux
        
        ---> Package spacewalk-setup.noarch 0:2.1.14-1.el5 set to be erased
        
        ---> Package spacewalk-setup-jabberd.noarch 0:2.0.1-1.el5 set to be erased
        
        ---> Package spacewalk-setup-postgresql.noarch 0:2.1.4-1.el5 set to be erased
        
        ---> Package spacewalk-slf4j.noarch 0:1.6.1-6.el5 set to be erased
        
        --> Processing Dependency: slf4j > 1.6 for package: quartz
        
        ---> Package spacewalk-sniglets.noarch 0:2.1.60-1.el5 set to be erased
        
        ---> Package spacewalk-taskomatic.noarch 0:2.1.169-1.el5 set to be erased
        
        ---> Package spacewalk-utils.noarch 0:2.1.27-1.el5 set to be erased
        
        --> Running transaction check
        
        ---> Package NPalert.noarch 0:1.127.12-1.el5 set to be erased
        
        ---> Package SatConfig-general.noarch 0:1.216.31-1.el5 set to be erased
        
        --> Processing Dependency: SatConfig-general for package: tsdb
        
        ---> Package nocpulse-common.noarch 0:2.2.7-1.el5 set to be erased
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SputLite-server
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: MessageQueue
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SputLite-client
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: eventReceivers
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SatConfig-installer
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: perl-NOCpulse-Probe
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SatConfig-cluster
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: perl-NOCpulse-Debug
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: perl-NOCpulse-Scheduler
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SatConfig-spread
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SatConfig-generator
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: ssl_bridge
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: NOCpulsePlugins
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: perl-NOCpulse-Gritch
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: ProgAGoGo
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SatConfig-bootstrap
        
        --> Processing Dependency: perl(NOCpulse::Config) for package: SNMPAlerts
        
        --> Processing Dependency: perl(NOCpulse::NOCpulseini) for package: perl-NOCpulse-Probe
        
        --> Processing Dependency: perl(NOCpulse::NOCpulseini) for package: SputLite-server
        
        --> Processing Dependency: nocpulse-common for package: SputLite-server
        
        --> Processing Dependency: nocpulse-common for package: MessageQueue
        
        --> Processing Dependency: nocpulse-common for package: SputLite-client
        
        --> Processing Dependency: nocpulse-common for package: SatConfig-installer
        
        --> Processing Dependency: nocpulse-common for package: perl-NOCpulse-Debug
        
        --> Processing Dependency: nocpulse-common for package: SatConfig-bootstrap
        
        --> Processing Dependency: nocpulse-common for package: SatConfig-generator
        
        --> Processing Dependency: nocpulse-common for package: perl-NOCpulse-PersistentConnection
        
        --> Processing Dependency: nocpulse-common for package: scdb
        
        --> Processing Dependency: nocpulse-common for package: ssl_bridge
        
        --> Processing Dependency: nocpulse-common for package: NOCpulsePlugins
        
        --> Processing Dependency: nocpulse-common for package: perl-NOCpulse-Scheduler
        
        ---> Package nocpulse-db-perl.noarch 0:3.6.5-1.el5 set to be erased
        
        ---> Package osa-dispatcher.noarch 0:5.11.33-1.el5 set to be erased
        
        ---> Package osa-dispatcher-selinux.noarch 0:5.11.33-1.el5 set to be erased
        
        ---> Package perl-NOCpulse-OracleDB.noarch 0:1.28.27-1.el5 set to be erased
        
        --> Processing Dependency: perl(NOCpulse::NPRecords) for package: SatConfig-bootstrap-server
        
        ---> Package quartz.noarch 0:1.8.4-5.el5 set to be erased
        
        ---> Package rhnpush.noarch 0:5.5.71-1.el5 set to be erased
        
        ---> Package status_log_acceptor.noarch 0:0.12.11-1.el5 set to be erased
        
        --> Running transaction check
        
        ---> Package MessageQueue.noarch 0:3.26.9-1.el5 set to be erased
        
        ---> Package NOCpulsePlugins.noarch 0:2.209.7-1.el5 set to be erased
        
        ---> Package ProgAGoGo.noarch 0:1.11.6-1.el5 set to be erased
        
        ---> Package SNMPAlerts.noarch 0:0.5.7-1.el5 set to be erased
        
        ---> Package SatConfig-bootstrap.noarch 0:1.11.5-1.el5 set to be erased
        
        ---> Package SatConfig-bootstrap-server.noarch 0:1.13.5-1.el5 set to be erased
        
        ---> Package SatConfig-cluster.noarch 0:1.54.10-1.el5 set to be erased
        
        ---> Package SatConfig-generator.noarch 0:2.29.14-1.el5 set to be erased
        
        ---> Package SatConfig-installer.noarch 0:3.24.6-1.el5 set to be erased
        
        ---> Package SatConfig-spread.noarch 0:1.1.3-1.el5 set to be erased
        
        ---> Package SputLite-client.noarch 0:1.10.1-1.el5 set to be erased
        
        ---> Package SputLite-server.noarch 0:1.10.1-1.el5 set to be erased
        
        ---> Package eventReceivers.noarch 0:2.20.18-1.el5 set to be erased
        
        ---> Package perl-NOCpulse-Debug.noarch 0:1.23.17-1.el5 set to be erased
        
        --> Processing Dependency: perl(NOCpulse::Debug) for package: perl-NOCpulse-Object
        
        --> Processing Dependency: perl(NOCpulse::Debuggable) for package: perl-NOCpulse-ProcessPool
        
        ---> Package perl-NOCpulse-Gritch.noarch 0:1.27.11-1.el5 set to be erased
        
        ---> Package perl-NOCpulse-PersistentConnection.noarch 0:1.10.1-1.el5 set to be erased
        
        ---> Package perl-NOCpulse-Probe.noarch 0:1.184.18-1.el5 set to be erased
        
        ---> Package perl-NOCpulse-Scheduler.noarch 0:1.58.12-1.el5 set to be erased
        
        ---> Package scdb.noarch 0:1.15.8-1.el5 set to be erased
        
        ---> Package ssl_bridge.noarch 0:1.9.3-1.el5 set to be erased
        
        ---> Package tsdb.noarch 0:1.27.29-1.el5 set to be erased
        
        --> Running transaction check
        
        ---> Package perl-NOCpulse-Object.noarch 0:1.26.12-1.el5 set to be erased
        
        --> Processing Dependency: perl(NOCpulse::Object) for package: perl-NOCpulse-CLAC
        
        --> Processing Dependency: perl(NOCpulse::PersistentObject) for package: perl-NOCpulse-CLAC
        
        ---> Package perl-NOCpulse-ProcessPool.noarch 0:1.6.1-1.el5 set to be erased
        
        --> Running transaction check
        
        ---> Package perl-NOCpulse-CLAC.noarch 0:1.9.9-1.el5 set to be erased
        
        --> Finished Dependency Resolution
        
        
        
        Dependencies Resolved
        
        
        
        =========================================================================================================================================================================================
        
         Package                                                          Arch                              Version                                   Repository                            Size
        
        =========================================================================================================================================================================================
        
        Removing:
        
         spacewalk-admin                                                  noarch                            2.1.2-1.el5                               installed                             58 k
        
         spacewalk-backend                                                noarch                            2.1.56-1.el5                              installed                            307 k
        
         spacewalk-backend-app                                            noarch                            2.1.56-1.el5                              installed                             80 k
        
         spacewalk-backend-applet                                         noarch                            2.1.56-1.el5                              installed                             42 k
        
         spacewalk-backend-config-files                                   noarch                            2.1.56-1.el5                              installed                             53 k
        
         spacewalk-backend-config-files-common                            noarch                            2.1.56-1.el5                              installed                            106 k
        
         spacewalk-backend-config-files-tool                              noarch                            2.1.56-1.el5                              installed                             71 k
        
         spacewalk-backend-iss                                            noarch                            2.1.56-1.el5                              installed                             33 k
        
         spacewalk-backend-iss-export                                     noarch                            2.1.56-1.el5                              installed                            104 k
        
         spacewalk-backend-libs                                           noarch                            2.1.56-1.el5                              installed                            162 k
        
         spacewalk-backend-package-push-server                            noarch                            2.1.56-1.el5                              installed                             36 k
        
         spacewalk-backend-server                                         noarch                            2.1.56-1.el5                              installed                            2.2 M
        
         spacewalk-backend-sql                                            noarch                            2.1.56-1.el5                              installed                            140 k
        
         spacewalk-backend-sql-postgresql                                 noarch                            2.1.56-1.el5                              installed                             53 k
        
         spacewalk-backend-tools                                          noarch                            2.1.56-1.el5                              installed                            1.1 M
        
         spacewalk-backend-xml-export-libs                                noarch                            2.1.56-1.el5                              installed                            409 k
        
         spacewalk-backend-xmlrpc                                         noarch                            2.1.56-1.el5                              installed                            693 k
        
         spacewalk-base                                                   noarch                            2.1.60-1.el5                              installed                            813 k
        
         spacewalk-base-minimal                                           noarch                            2.1.60-1.el5                              installed                             44 k
        
         spacewalk-base-minimal-config                                    noarch                            2.1.60-1.el5                              installed                            7.7 k
        
         spacewalk-branding                                               noarch                            2.1.33-1.el5                              installed                            681 k
        
         spacewalk-certs-tools                                            noarch                            2.1.6-1.el5                               installed                            442 k
        
         spacewalk-client-repo                                            noarch                            2.1-2.el5                                 installed                             426
        
         spacewalk-common                                                 noarch                            2.0.1-1.el5                               installed                              30
        
         spacewalk-config                                                 noarch                            2.1.5-1.el5                               installed                             42 k
        
         spacewalk-doc-indexes                                            noarch                            2.1.2-1.el5                               installed                             19 M
        
         spacewalk-grail                                                  noarch                            2.1.60-1.el5                              installed                            8.2 k
        
         spacewalk-html                                                   noarch                            2.1.60-1.el5                              installed                            273 k
        
         spacewalk-java                                                   noarch                            2.1.169-1.el5                             installed                             13 M
        
         spacewalk-java-config                                            noarch                            2.1.169-1.el5                             installed                             11 k
        
         spacewalk-java-lib                                               noarch                            2.1.169-1.el5                             installed                            7.5 M
        
         spacewalk-java-postgresql                                        noarch                            2.1.169-1.el5                             installed                             0.0
        
         spacewalk-monitoring                                             noarch                            2.0.1-1.el5                               installed                             18 k
        
         spacewalk-monitoring-selinux                                     noarch                            2.0.1-1.el5                               installed                            283 k
        
         spacewalk-postgresql                                             noarch                            2.0.1-1.el5                               installed                              67
        
         spacewalk-pxt                                                    noarch                            2.1.60-1.el5                              installed                             82 k
        
         spacewalk-repo                                                   noarch                            2.1-2.el5                                 installed                             744
        
         spacewalk-schema                                                 noarch                            2.1.51-1.el5                              installed                             10 M
        
         spacewalk-search                                                 noarch                            2.1.14-1.el5                              installed                            4.0 M
        
         spacewalk-selinux                                                noarch                            2.0.1-1.el5                               installed                             85 k
        
         spacewalk-setup                                                  noarch                            2.1.14-1.el5                              installed                            177 k
        
         spacewalk-setup-jabberd                                          noarch                            2.0.1-1.el5                               installed                             29 k
        
         spacewalk-setup-postgresql                                       noarch                            2.1.4-1.el5                               installed                             29 k
        
         spacewalk-slf4j                                                  noarch                            1.6.1-6.el5                               installed                             32 k
        
         spacewalk-sniglets                                               noarch                            2.1.60-1.el5                              installed                            462 k
        
         spacewalk-taskomatic                                             noarch                            2.1.169-1.el5                             installed                            9.7 k
        
         spacewalk-utils                                                  noarch                            2.1.27-1.el5                              installed                            322 k
        
        Removing for dependencies:
        
         MessageQueue                                                     noarch                            3.26.9-1.el5                              installed                             48 k
        
         NOCpulsePlugins                                                  noarch                            2.209.7-1.el5                             installed                            100 k
        
         NPalert                                                          noarch                            1.127.12-1.el5                            installed                            434 k
        
         ProgAGoGo                                                        noarch                            1.11.6-1.el5                              installed                            9.4 k
        
         SNMPAlerts                                                       noarch                            0.5.7-1.el5                               installed                            2.9 k
        
         SatConfig-bootstrap                                              noarch                            1.11.5-1.el5                              installed                            3.5 k
        
         SatConfig-bootstrap-server                                       noarch                            1.13.5-1.el5                              installed                            3.8 k
        
         SatConfig-cluster                                                noarch                            1.54.10-1.el5                             installed                             62 k
        
         SatConfig-general                                                noarch                            1.216.31-1.el5                            installed                             98 k
        
         SatConfig-generator                                              noarch                            2.29.14-1.el5                             installed                            8.8 k
        
         SatConfig-installer                                              noarch                            3.24.6-1.el5                              installed                             22 k
        
         SatConfig-spread                                                 noarch                            1.1.3-1.el5                               installed                            2.2 k
        
         SputLite-client                                                  noarch                            1.10.1-1.el5                              installed                             23 k
        
         SputLite-server                                                  noarch                            1.10.1-1.el5                              installed                             93 k
        
         eventReceivers                                                   noarch                            2.20.18-1.el5                             installed                             25 k
        
         nocpulse-common                                                  noarch                            2.2.7-1.el5                               installed                             12 k
        
         nocpulse-db-perl                                                 noarch                            3.6.5-1.el5                               installed                            5.7 k
        
         osa-dispatcher                                                   noarch                            5.11.33-1.el5                             installed                            228 k
        
         osa-dispatcher-selinux                                           noarch                            5.11.33-1.el5                             installed                            210 k
        
         perl-NOCpulse-CLAC                                               noarch                            1.9.9-1.el5                               installed                             62 k
        
         perl-NOCpulse-Debug                                              noarch                            1.23.17-1.el5                             installed                             80 k
        
         perl-NOCpulse-Gritch                                             noarch                            1.27.11-1.el5                             installed                             32 k
        
         perl-NOCpulse-Object                                             noarch                            1.26.12-1.el5                             installed                             78 k
        
         perl-NOCpulse-OracleDB                                           noarch                            1.28.27-1.el5                             installed                             64 k
        
         perl-NOCpulse-PersistentConnection                               noarch                            1.10.1-1.el5                              installed                             11 k
        
         perl-NOCpulse-Probe                                              noarch                            1.184.18-1.el5                            installed                            465 k
        
         perl-NOCpulse-ProcessPool                                        noarch                            1.6.1-1.el5                               installed                             14 k
        
         perl-NOCpulse-Scheduler                                          noarch                            1.58.12-1.el5                             installed                             42 k
        
         quartz                                                           noarch                            1.8.4-5.el5                               installed                            435 k
        
         rhnpush                                                          noarch                            5.5.71-1.el5                              installed                            265 k
        
         scdb                                                             noarch                            1.15.8-1.el5                              installed                            5.1 k
        
         ssl_bridge                                                       noarch                            1.9.3-1.el5                               installed                            6.0 k
        
         status_log_acceptor                                              noarch                            0.12.11-1.el5                             installed                            5.9 k
        
         tsdb                                                             noarch                            1.27.29-1.el5                             installed                             49 k
        
        
        
        Transaction Summary
        
        =========================================================================================================================================================================================
        
        Remove       81 Package(s)
        
        Reinstall     0 Package(s)
        
        Downgrade     0 Package(s)
        
        
        
        Is this ok [y/N]: y
        
        Downloading Packages:
        
        Running rpm_check_debug
        
        Running Transaction Test
        
        Finished Transaction Test
        
        Transaction Test Succeeded
        
        Running Transaction
        
          Erasing        : spacewalk-backend-xmlrpc                                                                                                                                         1/81
        
          Erasing        : perl-NOCpulse-Debug                                                                                                                                              2/81
        
          Erasing        : eventReceivers                                                                                                                                                   3/81
        
          Erasing        : perl-NOCpulse-Scheduler                                                                                                                                          4/81
        
          Erasing        : spacewalk-java-config                                                                                                                                            5/81
        
          Erasing        : SatConfig-installer                                                                                                                                              6/81
        
          Erasing        : status_log_acceptor                                                                                                                                              7/81
        
          Erasing        : spacewalk-setup-jabberd                                                                                                                                          8/81
        
          Erasing        : spacewalk-java                                                                                                                                                   9/81
        
          Erasing        : rhnpush                                                                                                                                                         10/81
        
          Erasing        : spacewalk-setup-postgresql                                                                                                                                      11/81
        
          Erasing        : spacewalk-config                                                                                                                                                12/81
        
        warning: /etc/rhn/rhn.conf saved as /etc/rhn/rhn.conf.rpmsave
        
          Erasing        : NPalert                                                                                                                                                         13/81
        
          Erasing        : spacewalk-backend-tools                                                                                                                                         14/81
        
          Erasing        : quartz                                                                                                                                                          15/81
        
          Erasing        : nocpulse-common                                                                                                                                                 16/81
        
        warning: /etc/NOCpulse.ini saved as /etc/NOCpulse.ini.rpmsave
        
          Erasing        : spacewalk-backend-app                                                                                                                                           17/81
        
          Erasing        : SatConfig-general                                                                                                                                               18/81
        
          Erasing        : spacewalk-repo                                                                                                                                                  19/81
        
          Erasing        : spacewalk-utils                                                                                                                                                 20/81
        
          Erasing        : spacewalk-backend-iss-export                                                                                                                                    21/81
        
          Erasing        : spacewalk-base                                                                                                                                                  22/81
        
          Erasing        : spacewalk-backend                                                                                                                                               23/81
        
          Erasing        : perl-NOCpulse-OracleDB                                                                                                                                          24/81
        
          Erasing        : spacewalk-setup                                                                                                                                                 25/81
        
          Erasing        : spacewalk-backend-applet                                                                                                                                        26/81
        
          Erasing        : spacewalk-java-lib                                                                                                                                              27/81
        
          Erasing        : osa-dispatcher-selinux                                                                                                                                          28/81
        
        libsemanage.semanage_direct_remove: Module osa-dispatcher was not found.
        
        /usr/sbin/semodule:  Failed on osa-dispatcher!
        
          Erasing        : ProgAGoGo                                                                                                                                                       29/81
        
          Erasing        : spacewalk-client-repo                                                                                                                                           30/81
        
          Erasing        : spacewalk-taskomatic                                                                                                                                            31/81
        
          Erasing        : SatConfig-spread                                                                                                                                                32/81
        
          Erasing        : spacewalk-backend-sql                                                                                                                                           33/81
        
          Erasing        : spacewalk-backend-xml-export-libs                                                                                                                               34/81
        
          Erasing        : spacewalk-monitoring                                                                                                                                            35/81
        
          Erasing        : scdb                                                                                                                                                            36/81
        
          Erasing        : spacewalk-schema                                                                                                                                                37/81
        
          Erasing        : spacewalk-slf4j                                                                                                                                                 38/81
        
          Erasing        : spacewalk-common                                                                                                                                                39/81
        
          Erasing        : spacewalk-postgresql                                                                                                                                            40/81
        
          Erasing        : SputLite-client                                                                                                                                                 41/81
        
          Erasing        : spacewalk-grail                                                                                                                                                 42/81
        
          Erasing        : spacewalk-doc-indexes                                                                                                                                           43/81
        
          Erasing        : perl-NOCpulse-CLAC                                                                                                                                              44/81
        
          Erasing        : NOCpulsePlugins                                                                                                                                                 45/81
        
          Erasing        : spacewalk-java-postgresql                                                                                                                                       46/81
        
          Erasing        : spacewalk-branding                                                                                                                                              47/81
        
          Erasing        : spacewalk-backend-config-files                                                                                                                                  48/81
        
          Erasing        : spacewalk-html                                                                                                                                                  49/81
        
          Erasing        : perl-NOCpulse-Gritch                                                                                                                                            50/81
        
          Erasing        : SputLite-server                                                                                                                                                 51/81
        
          Erasing        : spacewalk-backend-config-files-tool                                                                                                                             52/81
        
          Erasing        : perl-NOCpulse-Probe                                                                                                                                             53/81
        
          Erasing        : spacewalk-backend-server                                                                                                                                        54/81
        
          Erasing        : osa-dispatcher                                                                                                                                                  55/81
        
          Erasing        : perl-NOCpulse-PersistentConnection                                                                                                                              56/81
        
          Erasing        : ssl_bridge                                                                                                                                                      57/81
        
          Erasing        : spacewalk-certs-tools                                                                                                                                           58/81
        
          Erasing        : spacewalk-admin                                                                                                                                                 59/81
        
        warning: /etc/rhn/service-list saved as /etc/rhn/service-list.rpmsave
        
          Erasing        : spacewalk-backend-sql-postgresql                                                                                                                                60/81
        
          Erasing        : spacewalk-backend-iss                                                                                                                                           61/81
        
          Erasing        : spacewalk-base-minimal                                                                                                                                          62/81
        
          Erasing        : tsdb                                                                                                                                                            63/81
        
          Erasing        : MessageQueue                                                                                                                                                    64/81
        
          Erasing        : spacewalk-backend-config-files-common                                                                                                                           65/81
        
          Erasing        : SatConfig-generator                                                                                                                                             66/81
        
          Erasing        : spacewalk-backend-package-push-server                                                                                                                           67/81
        
          Erasing        : spacewalk-backend-libs                                                                                                                                          68/81
        
          Erasing        : spacewalk-selinux                                                                                                                                               69/81
        
        libsemanage.semanage_direct_remove: Module spacewalk was not found.
        
        /usr/sbin/semodule:  Failed on spacewalk!
        
          Erasing        : spacewalk-search                                                                                                                                                70/81
        
          Erasing        : nocpulse-db-perl                                                                                                                                                71/81
        
          Erasing        : spacewalk-base-minimal-config                                                                                                                                   72/81
        
          Erasing        : SNMPAlerts                                                                                                                                                      73/81
        
          Erasing        : SatConfig-cluster                                                                                                                                               74/81
        
          Erasing        : perl-NOCpulse-ProcessPool                                                                                                                                       75/81
        
          Erasing        : spacewalk-monitoring-selinux                                                                                                                                    76/81
        
        libsemanage.semanage_direct_remove: Module spacewalk-monitoring was not found.
        
        /usr/sbin/semodule:  Failed on spacewalk-monitoring!
        
          Erasing        : spacewalk-sniglets                                                                                                                                              77/81
        
          Erasing        : perl-NOCpulse-Object                                                                                                                                            78/81
        
          Erasing        : spacewalk-pxt                                                                                                                                                   79/81
        
          Erasing        : SatConfig-bootstrap-server                                                                                                                                      80/81
        
          Erasing        : SatConfig-bootstrap                                                                                                                                             81/81
        
        
        
        Removed:
        
          spacewalk-admin.noarch 0:2.1.2-1.el5                        spacewalk-backend.noarch 0:2.1.56-1.el5                       spacewalk-backend-app.noarch 0:2.1.56-1.el5
        
          spacewalk-backend-applet.noarch 0:2.1.56-1.el5              spacewalk-backend-config-files.noarch 0:2.1.56-1.el5          spacewalk-backend-config-files-common.noarch 0:2.1.56-1.el5
        
          spacewalk-backend-config-files-tool.noarch 0:2.1.56-1.el5   spacewalk-backend-iss.noarch 0:2.1.56-1.el5                   spacewalk-backend-iss-export.noarch 0:2.1.56-1.el5
        
          spacewalk-backend-libs.noarch 0:2.1.56-1.el5                spacewalk-backend-package-push-server.noarch 0:2.1.56-1.el5   spacewalk-backend-server.noarch 0:2.1.56-1.el5
        
          spacewalk-backend-sql.noarch 0:2.1.56-1.el5                 spacewalk-backend-sql-postgresql.noarch 0:2.1.56-1.el5        spacewalk-backend-tools.noarch 0:2.1.56-1.el5
        
          spacewalk-backend-xml-export-libs.noarch 0:2.1.56-1.el5     spacewalk-backend-xmlrpc.noarch 0:2.1.56-1.el5                spacewalk-base.noarch 0:2.1.60-1.el5
        
          spacewalk-base-minimal.noarch 0:2.1.60-1.el5                spacewalk-base-minimal-config.noarch 0:2.1.60-1.el5           spacewalk-branding.noarch 0:2.1.33-1.el5
        
          spacewalk-certs-tools.noarch 0:2.1.6-1.el5                  spacewalk-client-repo.noarch 0:2.1-2.el5                      spacewalk-common.noarch 0:2.0.1-1.el5
        
          spacewalk-config.noarch 0:2.1.5-1.el5                       spacewalk-doc-indexes.noarch 0:2.1.2-1.el5                    spacewalk-grail.noarch 0:2.1.60-1.el5
        
          spacewalk-html.noarch 0:2.1.60-1.el5                        spacewalk-java.noarch 0:2.1.169-1.el5                         spacewalk-java-config.noarch 0:2.1.169-1.el5
        
          spacewalk-java-lib.noarch 0:2.1.169-1.el5                   spacewalk-java-postgresql.noarch 0:2.1.169-1.el5              spacewalk-monitoring.noarch 0:2.0.1-1.el5
        
          spacewalk-monitoring-selinux.noarch 0:2.0.1-1.el5           spacewalk-postgresql.noarch 0:2.0.1-1.el5                     spacewalk-pxt.noarch 0:2.1.60-1.el5
        
          spacewalk-repo.noarch 0:2.1-2.el5                           spacewalk-schema.noarch 0:2.1.51-1.el5                        spacewalk-search.noarch 0:2.1.14-1.el5
        
          spacewalk-selinux.noarch 0:2.0.1-1.el5                      spacewalk-setup.noarch 0:2.1.14-1.el5                         spacewalk-setup-jabberd.noarch 0:2.0.1-1.el5
        
          spacewalk-setup-postgresql.noarch 0:2.1.4-1.el5             spacewalk-slf4j.noarch 0:1.6.1-6.el5                          spacewalk-sniglets.noarch 0:2.1.60-1.el5
        
          spacewalk-taskomatic.noarch 0:2.1.169-1.el5                 spacewalk-utils.noarch 0:2.1.27-1.el5
        
        
        
        Dependency Removed:
        
          MessageQueue.noarch 0:3.26.9-1.el5                                   NOCpulsePlugins.noarch 0:2.209.7-1.el5                  NPalert.noarch 0:1.127.12-1.el5
        
          ProgAGoGo.noarch 0:1.11.6-1.el5                                      SNMPAlerts.noarch 0:0.5.7-1.el5                         SatConfig-bootstrap.noarch 0:1.11.5-1.el5
        
          SatConfig-bootstrap-server.noarch 0:1.13.5-1.el5                     SatConfig-cluster.noarch 0:1.54.10-1.el5                SatConfig-general.noarch 0:1.216.31-1.el5
        
          SatConfig-generator.noarch 0:2.29.14-1.el5                           SatConfig-installer.noarch 0:3.24.6-1.el5               SatConfig-spread.noarch 0:1.1.3-1.el5
        
          SputLite-client.noarch 0:1.10.1-1.el5                                SputLite-server.noarch 0:1.10.1-1.el5                   eventReceivers.noarch 0:2.20.18-1.el5
        
          nocpulse-common.noarch 0:2.2.7-1.el5                                 nocpulse-db-perl.noarch 0:3.6.5-1.el5                   osa-dispatcher.noarch 0:5.11.33-1.el5
        
          osa-dispatcher-selinux.noarch 0:5.11.33-1.el5                        perl-NOCpulse-CLAC.noarch 0:1.9.9-1.el5                 perl-NOCpulse-Debug.noarch 0:1.23.17-1.el5
        
          perl-NOCpulse-Gritch.noarch 0:1.27.11-1.el5                          perl-NOCpulse-Object.noarch 0:1.26.12-1.el5             perl-NOCpulse-OracleDB.noarch 0:1.28.27-1.el5
        
          perl-NOCpulse-PersistentConnection.noarch 0:1.10.1-1.el5             perl-NOCpulse-Probe.noarch 0:1.184.18-1.el5             perl-NOCpulse-ProcessPool.noarch 0:1.6.1-1.el5
        
          perl-NOCpulse-Scheduler.noarch 0:1.58.12-1.el5                       quartz.noarch 0:1.8.4-5.el5                             rhnpush.noarch 0:5.5.71-1.el5
        
          scdb.noarch 0:1.15.8-1.el5                                           ssl_bridge.noarch 0:1.9.3-1.el5                         status_log_acceptor.noarch 0:0.12.11-1.el5
        
          tsdb.noarch 0:1.27.29-1.el5
        
        
        
        Complete!
        
        






        Share: