yum is locked + /bin/sh: No such file or directory
Hello guys i have 2 problems that i need help solving today.
The cron job "upcp" is sending me this email daily with an error:
[HTML]/usr/local/cpanel/scripts/upcp: line 1: .#!/bin/sh: No such file or directory[/HTML]
Then at the same time i get a second email that says:
[HTML]Cpanel version change is blocked.
fatal,Cannot upgrade because yum is locked (/var/run/yum.pid has existed for 10+ minutes).
[/HTML]
I have root access with putty and i been reading lots of posts and trying all kind of commands but these 2 errors still come up.
Help me please, thank you.
-
What are the outputs of the next two commands: cat /usr/local/cpanel/scripts/upcp ps aux | grep yum0 -
What are the outputs of the next two commands:
cat /usr/local/cpanel/scripts/upcp ps aux | grep yum
Hi this is the output of cat /usr/local/cpanel/scripts/upcproot@BPMP001 [/etc/httpd/conf]# cat /usr/local/cpanel/scripts/upcp .#!/bin/sh eval 'if [ -x /usr/local/cpanel/3rdparty/bin/perl ]; then exec /usr/local/cpanel/3rdparty/bin/perl -x -- $0 ${1+"$@"}; else exec /usr/bin/perl -x $0 ${1+"$@"}; fi;' if 0; #!/usr/bin/perl # cpanel - scripts/upcp Copyright(c) 2012 cPanel, Inc. # All rights Reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited BEGIN { unshift @INC, q{/usr/local/cpanel}; # if we are being called with a compile check flag ( perl -c ), skip the begin block # so we don't actually call upcp.static when just checking syntax and such is OK return if $^C; # static never gets --use-checked and should pass all the begin block checks return if $0 =~ /\.static$/; # let the '--use-check' instance compiled if ( grep { $_ eq '--use-check' } @ARGV ) { no warnings; # dynamic definition of the INIT block eval "INIT { exit(0); }"; return; } system("$0 --use-check >/dev/null 2>&1"); # compilation is ok with '--use-check', we will continue the non static version return if $? == 0; my $static = $0 . ".static"; if ( -f $static ) { print STDERR "We determined that $0 had compilation issues..\n"; print STDERR "Trying to exec $static " . join( ' ', @ARGV ) . "\n"; exec( $^X, $static, @ARGV ); } } require 5.006; use strict; use Cpanel::Env (); use Cpanel::SafeRun::Errors (); use Cpanel::Update::Logger (); use IO::Handle (); use POSIX (); use Cpanel::Unix::PID::Tiny (); open( STDERR, ">&STDOUT" ); $| = 1; umask(0022); ## case 47517: move root check and setupenv higher where it was 11.28 if ( $> != 0 ) { die "upcp must be run as root"; } setupenv(); unset_rlimits(); ############################################################################# # Record the arguments used when started, check for certain flags my $version_upgrade_file = '/usr/local/cpanel/upgrade_in_progress.txt'; my $update_is_available_exit_code = 42; my @retain_argv = @ARGV; my $fromself = 0; my $forced = 0; my $sync_requested = 0; my $bg = 0; my $now = time(); my $logfile_path = '/var/cpanel/updatelogs/update.' . $now . '.log'; foreach my $arg (@ARGV) { if ( $arg =~ m/^--log=(.*)/ ) { $logfile_path = $1; } elsif ( $arg eq '--fromself' ) { $fromself = 1; } elsif ( $arg eq '--force' ) { $forced = 1; $ENV{'FORCEDCPUPDATE'} = 1; } elsif ( $arg eq '--sync' ) { $sync_requested = 1; } elsif ( $arg eq '--bg' ) { $bg = 1; } } if ( $sync_requested && $forced ) { print "FATAL: --force and --sync are mutually exclusive commands.\n"; print " Force is designed to update your installed version, regardless of whether it's already up to date.\n"; print " Sync is designed to update the version already installed, regardless of what is available.\n"; exit 1; } ############################################################################# # Make sure easyapache isn't already running my $upid = Cpanel::Unix::PID::Tiny->new(); if ( $upid->is_pidfile_running('/var/run/easyapache.pid') ) { print "EasyApache is currently running. Please wait for EasyApache to complete before running cPanel Update (upcp).\n"; exit 1; } ############################################################################# # Make sure we aren't already running && make sure everyone knows we are running my $pidfile = '/var/run/upcp.pid'; my $lastlog = '/var/cpanel/updatelogs/last'; my $logger; # Global for logger object. my $curpid = $upid->get_pid_from_pidfile($pidfile) || 0; if ( $curpid && $curpid != $$ && !$fromself && -e '/var/cpanel/upcpcheck' ) { my $pidfile_mtime = ( stat($pidfile) )[9]; my $pidfile_age = ( time - $pidfile_mtime ); if ( $pidfile_age > 21600 ) { # Running for > 6 hours # warning when updating that sentence, you also need to update cgi/tail_upcp2.cgi rules && its use in tail_upcp2.cgi tests _logger()->warning("previous PID ($curpid) has been running more than 6 hours. Killing processes."); kill_upcp($curpid); # the pid_file_no_cleanup() will exit if it is still stuck after this sleep 1; # Give the process group time to die. } elsif ( $upid->is_pidfile_running($pidfile) ) { print "cPanel Update (upcp) is already running. Please wait for the previous upcp (pid $curpid) to complete, then try again. You can use the command 'ps --pid $curpid' to check if the process is running. You may wish to use '--force'\n"; exit 1; } } if ( $curpid && $curpid != $$ && !$upid->is_pidfile_running($pidfile) ) { print "Stale PID file '$pidfile' (pid=$curpid)\n"; } if ( !$fromself && !$upid->pid_file_no_cleanup($pidfile) ) { print "process is already running\n"; exit 1; } # to indicate re-entry into upcp my $pbar_starting_point = $fromself ? 17 : 0; # record current version my $from_version = fetch_cpanel_version(); ############################################################################# # Set up the upcp log directory and files setup_and_clean_updatelogs(); ############################################################################# # Fork a child to the background. The child does all the heavy lifting and # logs to a file; the parent just watches, reads, and parses the log file, # displaying what it gets. # # Note that the parent reads the log in proper line-oriented -- and buffered! # -- fashion. An earlier version of this script did raw sysread() calls here, # and had to deal with all the mess that that entailed. The current approach # reaps all the benefits of Perl's and Linux's significant file read # optimizations without needing to re-invent any of them. The parent loop # below becomes lean, mean, and even elegant. # # Note in particular that we do not need to explicitly deal with an # end-of-file condition (other than avoiding using undefined data). For # exiting the read loop we merely need to test that the child has expired, # which in any case is the only situation that can cause an eof condition for # us on the file the child is writing. # # Note, too, that the open() needs to be inside this loop, in case the child # has not yet created the file. if ( !$fromself ) { # we need to be sure that log an pid are the current one when giving back the end unlink $lastlog if $bg; if ( my $updatepid = fork() ) { if ($logger) { # Close if logged about killing stale process. $logger->{'brief'} = 1; # Don't be chatty about closing $logger->close_log; } if ($bg) { print "upcp is going into background mode. You can follow "$logfile_path" to watch its progress.\n"; my $progress; select undef, undef, undef, .10; while ( !-e $lastlog ) { print '.'; select undef, undef, undef, .25; $progress = 1; } print "\n" if $progress; } else { monitor_upcp($updatepid); } exit; } } $0 = 'cPanel Update (upcp) - Slave'; open( RNULL, '<', '/dev/null' ); chdir '/'; _logger(); # Open the log file. my $openmax = POSIX::sysconf(&POSIX::_SC_OPEN_MAX); if ( !$openmax ) { $openmax = 64; } foreach my $i ( 0 .. $openmax ) { POSIX::close($i) unless $i == fileno( $logger->{'fh'} ); } POSIX::setsid(); open( STDOUT, ">/dev/null" ); open( STDERR, ">/dev/null" ); $logger->update_pbar($pbar_starting_point); ############################################################################# # Set CPANEL_IS_CRON env var based on detection algorithm my $cron_reason = set_cron_env(); $logger->info("Detected cron=$ENV{'CPANEL_IS_CRON'} ($cron_reason)"); ############################################################################## # Symlink /var/cpanel/updatelogs/last to the current log file unlink $lastlog; symlink( $logfile_path, $lastlog ) or $logger->error("Could not symlink $lastlog: $!"); ############################################################################# # now that we have sporked: update our pidfile and ensure it is removed unlink $pidfile; # so that pid_file() won't see it as running. if ( !$upid->pid_file($pidfile) ) { # re-verifies (i.e. upcp was not also started after the unlink() and here) and sets up cleanup of $pidfile for sporked proc $logger->error("Could not update pidfile "$pidfile" with BG process: $!\n"); exit 1; } # make sure that the pid file is going to be removed when killed by a signal $SIG{INT} = $SIG{HUP} = $SIG{TERM} = sub { unlink $pidfile; if ($logger) { $logger->close_log; $logger->open_log; $logger->error("User hit ^C or killed the process ( pid file '$pidfile' removed )."); $logger->close_log; } exit; }; ############################################################################# # Get variables needed for update my $gotSigALRM = 0; my $connecttimeout = 30; my $liveconnect = 0; my $connectedhost = q{}; my @HOST_IPs = (); my $dnsonly = -e '/var/cpanel/dnsonly' ? 1 : 0; ## Case 46528: license checks moved to updatenow and Cpanel::Update::Blocker $logger->debug("Done getting update config variables.."); $logger->increment_pbar; my $upcp_disallowed_path = '/root/.upcp_controlc_disallowed'; ############################################################################# # Run the preupcp hook if ( -x '/usr/local/cpanel/scripts/preupcp' ) { $logger->info("Running /usr/local/cpanel/scripts/preupcp"); system '/usr/local/cpanel/scripts/preupcp'; } if ( -e '/var/cpanel/hooks.yaml' && -x '/usr/local/cpanel/scripts/hook' ) { $logger->info("Running Standardized hooks"); system '/usr/local/cpanel/scripts/hook', '--category=System', '--event=upcp', '--stage=pre'; } $logger->increment_pbar(); ############################################################################# # Check mtime on ourselves before sync # This is the target for a goto in the case that the remote TIERS file is # changed sometime during the execution of this upcp run. It prevents the # need for a new script argument and re-exec. STARTOVER: my $mtime = ( stat('/usr/local/cpanel/scripts/upcp') )[9]; $logger->info( "mtime on upcp is $mtime (" . scalar( localtime($mtime) ) . ")" ); # * If no fromself arg is passed, it's either the first run from crontab or called manually. # * --force is passed to updatenow, has no bearing on upcp itself. # * Even if upcp is changed 3 times in a row during an update (fastest builds ever?), we # would never actually update more than once unless the new upcp script changed the logic below if ( !$fromself ) { # run updatenow to sync everything # updatenow expects --upcp to be passed or will error out my @updatenow_args = ( '/usr/local/cpanel/scripts/updatenow', '--upcp', "--log=$logfile_path" ); # if --forced was received, pass it on to updatenow if ($forced) { push( @updatenow_args, '--force' ); } # if --sync was received, pass it on to updatenow. --force makes --sync meaningless. if ( !$forced && $sync_requested ) { push( @updatenow_args, '--sync' ); } # set flag to disallow ^C during updatenow open( TMPF, '>>', $upcp_disallowed_path ); close(TMPF); # call updatenow, if we get a non-zero status, die. my $exit_code = system(@updatenow_args); unlink($upcp_disallowed_path) if -f ($upcp_disallowed_path); $logger->increment_pbar(15); if ( $exit_code != 0 ) { my $signal = $exit_code % 256; $exit_code = $exit_code >> 8; my $msg = "Running `@updatenow_args` failed, exited with code $exit_code (signal = $signal)"; $logger->error($msg); eval { require Cpanel::iContact; }; if ( exists $INC{'Cpanel/iContact.pm'} ) { Cpanel::iContact::icontact( 'application' => 'upcp', 'subject' => 'Cpanel update failure in upcp', 'message' => $msg, 'level' => 1 ); } else { $logger->error('Failed to send contact message'); } exit($exit_code); } # get the new mtime and compare it, if upcp changed, let's run ourselves again. # this should be a fairly rare occasion. my $newmtime = ( stat('/usr/local/cpanel/scripts/upcp') )[9]; if ( $newmtime ne $mtime ) { #----> Run our new self (and never come back). $logger->info("New upcp detected, restarting ourself"); $logger->close_log(); exec '/usr/local/cpanel/scripts/upcp', @retain_argv, '--fromself', "--log=$logfile_path"; } } ############################################################################# # Run cpkeyclt once if we performed an update if ( -e $version_upgrade_file ) { system('/usr/local/cpanel/cpkeyclt'); } ############################################################################# # Run the maintenance script # Maintenance pbar range: 20-80% $logger->close_log(); # Allow maintenance to write to the log my $exit_status = system( '/usr/local/cpanel/scripts/maintenance', '--log=' . $logfile_path, '--pbar-start=20', '--pbar-stop=80' ); $logger->open_log(); # Re-open the log now maintenance is done. if ( $exit_status != 0 ) { my $msg = "Maintenance ended, however it did not exit cleanly ($exit_status). Please check the logs for an indication of what happened"; $logger->error( $msg, 1 ); eval { require Cpanel::iContact; }; if ( exists $INC{'Cpanel/iContact.pm'} ) { Cpanel::iContact::icontact( 'application' => 'upcp', 'subject' => 'cPanel & WHM update failure (upcp)', 'message' => $msg, 'level' => 1 ); } else { $logger->error('Failed to send contact message'); } } else { $logger->info("Maintenance completed successfully"); } # Run this here so that we can make sure sysup has run and that atd is installed. if ( !defer_log_gathering( $$, $logfile_path ) ) { $logger->info("Couldn't run try-later; maybe atd isn't working?"); } # Run post-sync cleanup only if updatenow did a sync # Formerly run after layer2 did a sync. if ( -e $version_upgrade_file ) { # post_sync pbar range: 80%-95% $logger->close_log(); # Yield the log to post_sync_cleanup my $post_exit_status = system( '/usr/local/cpanel/scripts/post_sync_cleanup', '--log=' . $logfile_path, '--pbar-start=80', '--pbar-stop=95' ); $logger->open_log; # reopen the log to continue writing messages if ( $post_exit_status != 0 ) { my $msg = "\nPost-sync cleanup has ended, however it did not exit cleanly. Please check the logs for an indication of what happened"; $logger->error($msg); eval { require Cpanel::iContact; }; if ( exists $INC{'Cpanel/iContact.pm'} ) { Cpanel::iContact::icontact( 'application' => 'upcp', 'subject' => 'Cpanel update failure in upcp', 'message' => $msg, 'level' => 1 ); } else { $logger->error('Failed to send contact message'); } } else { $logger->info("Post-sync cleanup completed successfully"); } unlink $version_upgrade_file; # Check for new version... used when updating to next LTS version $logger->info("Polling updatenow to see if a newer version is available for upgrade"); $logger->close_log(); # Yield the log to updatenow my $update_available = system( '/usr/local/cpanel/scripts/updatenow', "--log=$logfile_path", '--checkremoteversion' ); $logger->open_log; # reopen the log to continue writing messages if ( !$sync_requested && $update_available && ( $update_available >> 8 ) == $update_is_available_exit_code ) { $logger->info("\n\n/!\\ - Next LTS version available, restarting upcp and updating system. /!\\\n\n"); $fromself = 0; goto STARTOVER; } } ############################################################################# # Run the post upcp hook $logger->update_pbar(95); if ( -x '/usr/local/cpanel/scripts/postupcp' ) { $logger->info("Running /usr/local/cpanel/scripts/postupcp"); system '/usr/local/cpanel/scripts/postupcp'; } if ( -e '/var/cpanel/hooks.yaml' && -x '/usr/local/cpanel/scripts/hook' ) { $logger->info("Running Standardized hooks"); system '/usr/local/cpanel/scripts/hook', '--category=System', '--event=upcp', '--stage=post'; } close(RNULL); ############################################################################# # All done. ############################################################################# $logger->update_pbar(100); $logger->info( "\n\n\tcPanel update completed\n\n", 1 ); $logger->info("A log of this update is available at $logfile_path\n\n"); # this happens on exit so it shouldn't be necessary $logger->info("Removing upcp pidfile"); unlink $pidfile if -f $pidfile || $logger->warn("Could not delete pidfile $pidfile : $!"); my $update_blocks_fname = '/var/cpanel/update_blocks.config'; if ( -s $update_blocks_fname ) { $logger->warning("NOTE: A system upgrade was not possible due to the following blockers:\n"); if ( open( my $blocks_fh, '<', $update_blocks_fname ) ) { while ( my $line = readline $blocks_fh ) { my ( $level, $message ) = split /,/, $line, 2; # Not using the level in the log, cause the logger can emit additional messages # on some of the levels used (fatal emits an 'email message', etc) $logger->warning( uc("[$level]") . " - $message" ); } } else { $logger->warning("Unable to open blocks file! Please review '/var/cpanel/update_blocks.config' manually."); } } else { $logger->info("\n\nCompleted all updates\n\n"); } $logger->close_log(); exit(0); ############################################################################# ######[ Subroutines ]######################################################## ############################################################################# ############################################################################# sub kill_upcp { my $pid = shift or die; my $status = shift || 'hanging'; my $msg = shift || "/usr/local/cpanel/scripts/upcp was running as pid '$pid' for longer than 6 hours. cPanel will kill this process and run a new upcp in its place."; # Attempt to notify admin of the kill. eval { require Cpanel::iContact; }; if ( exists $INC{'Cpanel/iContact.pm'} ) { Cpanel::iContact::icontact( 'application' => 'upcp', 'subject' => "cPanel update $status", 'message' => $msg, 'level' => 1 ); } print "Sending kill signal to process group for $pid\n"; kill -1, $pid; # Kill the process group for ( 1 .. 60 ) { print "Waiting for processes to die\n"; waitpid( $pid, POSIX::WNOHANG() ); last if ( !kill( 0, $pid ) ); sleep 1; } if ( kill( 0, $pid ) ) { print "Could not kill upcp nicely. Doing kill -9 $pid\n"; kill 9, $pid; } else { print "Done!\n"; } } ############################################################################# sub setupenv { Cpanel::Env::cleanenv(); delete $ENV{'DOCUMENT_ROOT'}; delete $ENV{'SERVER_SOFTWARE'}; if ( $ENV{'WHM50'} ) { $ENV{'GATEWAY_INTERFACE'} = 'CGI/1.1'; } ( $ENV{'USER'}, $ENV{'HOME'} ) = ( getpwuid($>) )[ 0, 7 ]; $ENV{'PATH'} .= ':/sbin:/usr/sbin:/usr/bin:/bin:/usr/local/bin'; $ENV{'LANG'} = 'C'; $ENV{'LC_ALL'} = 'C'; } sub unset_rlimits { # This is required if upcp started running from a pre-1132 eval { local $SIG{__DIE__}; require BSD::Resource; BSD::Resource::setrlimit( BSD::Resource::RLIMIT_RSS(), BSD::Resource::RLIM_INFINITY(), BSD::Resource::RLIM_INFINITY() ); BSD::Resource::setrlimit( BSD::Resource::RLIMIT_AS(), BSD::Resource::RLIM_INFINITY(), BSD::Resource::RLIM_INFINITY() ); }; } ############################################################################# sub setup_and_clean_updatelogs { if ( !-d '/var/cpanel/updatelogs' ) { unlink('/var/cpanel/updatelogs'); mkdir( '/var/cpanel/updatelogs', 0700 ); } opendir( ULS, '/var/cpanel/updatelogs' ); while ( my $file = readdir(ULS) ) { if ( -f '/var/cpanel/updatelogs/' . $file && ( stat( '/var/cpanel/updatelogs/' . $file ) )[9] < ( $now - ( 86400 * 10 ) ) ) { unlink("/var/cpanel/updatelogs/${file}") unless $file eq 'summary.log'; } } closedir(ULS); } sub set_cron_env { # Do not override the env var if set. return 'env var CPANEL_IS_CRON was present before this process started.' if ( defined $ENV{'CPANEL_IS_CRON'} ); if ( grep { $_ eq '--cron' } @ARGV ) { $ENV{'CPANEL_IS_CRON'} = 1; return 'cron mode set from command line'; } if ( $ARGV[0] eq 'manual' ) { $ENV{'CPANEL_IS_CRON'} = 0; return 'manual flag passed on command line'; } if ( -t STDOUT ) { $ENV{'CPANEL_IS_CRON'} = 0; return 'Terminal detected'; } if ( $ENV{'SSH_CLIENT'} ) { $ENV{'CPANEL_IS_CRON'} = 0; return 'SSH connection detected'; } # cron sets TERM=dumb if ( $ENV{'TERM'} eq 'dumb' ) { $ENV{'CPANEL_IS_CRON'} = 1; return 'TERM detected as set to dumb'; } # Check if parent is whostmgr if ( readlink( '/proc/' . getppid() . '/exe' ) =~ m/whostmgrd/ ) { $ENV{'CPANEL_IS_CRON'} = 0; return 'parent process is whostmgrd'; } # Default to cron enabled. $ENV{'CPANEL_IS_CRON'} = 1; return 'default'; } ############################################################################# sub fetch_cpanel_version { my $version; my $version_file = '/usr/local/cpanel/version'; return if !-f $version_file; my $fh; local $/ = undef; return if !open $fh, '<', $version_file; $version = <$fh>; close $fh; $version =~ s/^\s+|\s+$//gs; return $version; } ############################################################################# sub defer_log_gathering { my ( $pid, $logfile ) = @_; return if ( !defined $from_version ); my @action_cmd = ( '/usr/local/cpanel/scripts/gather-update-logs', # we cannot rely on the timestamp to build the logfile # as the logfile can be provided as an extra argument # from a previous call with the --fromself option '--logfile', $logfile, '--version-before', $from_version, ); return if !-x $action_cmd[0]; my @logfile_parts = split /\//, $logfile; $logfile = pop @logfile_parts; my @check_cmd = ( '/usr/local/cpanel/scripts/upcp-running', '--pid', $pid, '--logfile', $logfile, '--invert-exit', '--quiet', ); return if !-x $check_cmd[0]; my @cmd = ( '/usr/local/cpanel/scripts/try-later', '--action', join( ' ', @action_cmd ), '--check', join( ' ', @check_cmd ), '--delay', 15, '--max-retries', 24, '--skip-first', '--act-finally' ); return if !-x $cmd[0]; return !system @cmd; } ############################################################################# sub monitor_upcp { my $updatepid = shift or die; $0 = 'cPanel Update (upcp) - Master'; $SIG{INT} = $SIG{TERM} = sub { print "User hit ^C\n"; if ( -f $upcp_disallowed_path ) { print "Not allowing upcp slave to be killed during updatenow, just killing monitoring process.\n"; exit; } print "killing upcp\n"; kill_upcp( $updatepid, "aborted", "/usr/local/cpanel/scripts/upcp was aborted by the user hitting Ctrl-C." ); exit; }; $SIG{HUP} = sub { print "SIGHUP detected; closing monitoring process.\n"; print "The upcp slave has not been affected\n"; exit; }; # Wait till the file shows up. until ( -e $logfile_path ) { select undef, undef, undef, .25; # sleep just a bit } # Wait till we're allowed to open it. my $fh; until ( defined $fh && fileno $fh ) { $fh = new IO::Handle; if ( !open $fh, '<', $logfile_path ) { undef $fh; select undef, undef, undef, .25; # sleep just a bit next; } } # Read the file until the pid dies. my $child_done = 0; while (1) { # Read all the available lines. while (1) { my $line = <$fh>; last if ( !defined $line || $line eq '' ); print $line; } # Once the child is history, we need to do yet one more final read, # on the off chance (however remote) that she has written one last # hurrah after we last checked. Hence the following. last if $child_done; # from prev. pass $child_done = 1 if -1 == waitpid( $updatepid, 1 ); # and loop back for one more read select undef, undef, undef, .25; # Yield idle time to the cpu } close $fh if $fh; exit; } sub _logger { return $logger if $logger; $logger = Cpanel::Update::Logger->new( { 'logfile' => $logfile_path, 'stdout' => 1, 'log_level' => 'info' } ); # do not set the pbar in the constructor to do not display the 0 % in bg mode $logger->{pbar} = $pbar_starting_point; return $logger; }
And this is ps aux | grep yum output:root@BPMP001 [/etc/httpd/conf]# ps aux | grep yum root 15543 0.0 0.0 103244 804 pts/0 S+ 17:13 0:00 grep yum0 -
First of all, I apologize for delay in reply as I was out of town. The error is in line 1 in this file: /usr/local/cpanel/scripts/upcp
Modify the file and remove the dot " . " from the beginning, make it like this:#!/bin/bash
Regards,0 -
Wow i'm such a fool! haha. Well, i fixed it and restarted cron. Question will this also fix the yum error? Thanks, don't mind the delay. 0 -
Hello :) You can run the following commands to verify that YUM is working as expected: yum clean all yum update
Thank you.0 -
Hello :) You can run the following commands to verify that YUM is working as expected:
yum clean all yum update
Thank you.
Hi Michael, i run the commands, no email this time, this is the output: (a handful of errors at the end)yum update Loaded plugins: fastestmirror, priorities, security Determining fastest mirrors epel/metalink | 9.5 kB 00:00 Could not retrieve mirrorlist http://apt.sw.be/redhat/el6/en/mirrors-rpmforge error was 14: PYCURL ERROR 7 - "couldn't connect to host" * base: mirror.1000mbps.com * epel: ftp.nluug.nl * extras: mirror.1000mbps.com * updates: mirror.nl.leaseweb.net base | 3.7 kB 00:00 base/primary_db | 4.6 MB 00:00 epel | 4.4 kB 00:00 epel/primary_db | 6.7 MB 00:00 extras | 3.4 kB 00:00 extras/primary_db | 31 kB 00:00 rpmforge | 1.9 kB 00:00 rpmforge/primary_db | 2.7 MB 00:01 updates | 3.4 kB 00:00 updates/primary_db | 4.4 MB 00:00 Setting up Update Process Resolving Dependencies --> Running transaction check ---> Package SDL.x86_64 0:1.2.14-2.el6 will be updated ---> Package SDL.x86_64 0:1.2.14-3.el6 will be an update ---> Package abrt.x86_64 0:2.0.4-14.el6.centos will be updated ---> Package abrt.x86_64 0:2.0.8-26.el6.centos will be an update ---> Package abrt-addon-ccpp.x86_64 0:2.0.4-14.el6.centos will be updated ---> Package abrt-addon-ccpp.x86_64 0:2.0.8-26.el6.centos will be an update ---> Package abrt-addon-kerneloops.x86_64 0:2.0.4-14.el6.centos will be updated ---> Package abrt-addon-kerneloops.x86_64 0:2.0.8-26.el6.centos will be an update ---> Package abrt-addon-python.x86_64 0:2.0.4-14.el6.centos will be updated ---> Package abrt-addon-python.x86_64 0:2.0.8-26.el6.centos will be an update ---> Package abrt-cli.x86_64 0:2.0.4-14.el6.centos will be updated ---> Package abrt-cli.x86_64 0:2.0.8-26.el6.centos will be an update --> Processing Dependency: abrt-tui for package: abrt-cli-2.0.8-26.el6.centos.x86_64 ---> Package abrt-libs.x86_64 0:2.0.4-14.el6.centos will be updated ---> Package abrt-libs.x86_64 0:2.0.8-26.el6.centos will be an update ---> Package alsa-utils.x86_64 0:1.0.21-3.el6 will be updated ---> Package alsa-utils.x86_64 0:1.0.22-9.el6_6 will be an update ---> Package at.x86_64 0:3.1.10-43.el6_2.1 will be updated ---> Package at.x86_64 0:3.1.10-44.el6_6.2 will be an update ---> Package atk.x86_64 0:1.28.0-2.el6 will be updated ---> Package atk.x86_64 0:1.30.0-1.el6 will be an update ---> Package atlas.x86_64 0:3.8.4-1.el6 will be updated ---> Package atlas.x86_64 0:3.8.4-2.el6 will be an update ---> Package audit.x86_64 0:2.1.3-3.el6 will be updated ---> Package audit.x86_64 0:2.3.7-5.el6 will be an update ---> Package audit-libs.x86_64 0:2.1.3-3.el6 will be updated ---> Package audit-libs.x86_64 0:2.3.7-5.el6 will be an update ---> Package authconfig.x86_64 0:6.1.12-5.el6 will be updated ---> Package authconfig.x86_64 0:6.1.12-19.el6 will be an update ---> Package autofs.x86_64 1:5.0.5-39.el6_2.1 will be updated ---> Package autofs.x86_64 1:5.0.5-109.el6_6.1 will be an update ---> Package avahi-libs.x86_64 0:0.6.25-11.el6 will be updated ---> Package avahi-libs.x86_64 0:0.6.25-15.el6 will be an update ---> Package bash.x86_64 0:4.1.2-8.el6.centos will be updated ---> Package bash.x86_64 0:4.1.2-29.el6 will be an update ---> Package bfa-firmware.noarch 0:3.0.0.0-1.el6 will be updated ---> Package bfa-firmware.noarch 0:3.2.23.0-2.el6 will be an update ---> Package bind.x86_64 32:9.7.3-8.P3.el6_2.2 will be updated ---> Package bind.x86_64 32:9.8.2-0.30.rc1.el6_6.3 will be an update ---> Package bind-devel.x86_64 32:9.7.3-8.P3.el6_2.2 will be updated ---> Package bind-devel.x86_64 32:9.8.2-0.30.rc1.el6_6.3 will be an update ---> Package bind-libs.x86_64 32:9.7.3-8.P3.el6_2.2 will be updated ---> Package bind-libs.x86_64 32:9.8.2-0.30.rc1.el6_6.3 will be an update ---> Package bind-utils.x86_64 32:9.7.3-8.P3.el6_2.2 will be updated ---> Package bind-utils.x86_64 32:9.8.2-0.30.rc1.el6_6.3 will be an update ---> Package binutils.x86_64 0:2.20.51.0.2-5.28.el6 will be updated ---> Package binutils.x86_64 0:2.20.51.0.2-5.42.el6 will be an update ---> Package biosdevname.x86_64 0:0.3.11-1.el6 will be updated ---> Package biosdevname.x86_64 0:0.5.1-1.el6 will be an update ---> Package boost.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-date-time.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-date-time.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-filesystem.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-filesystem.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-graph.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-graph.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-iostreams.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-iostreams.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-program-options.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-program-options.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-python.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-python.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-regex.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-regex.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-serialization.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-serialization.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-signals.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-signals.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-system.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-system.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-test.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-test.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-thread.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-thread.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package boost-wave.x86_64 0:1.41.0-11.el6_1.2 will be updated ---> Package boost-wave.x86_64 0:1.41.0-25.el6.centos will be an update ---> Package bridge-utils.x86_64 0:1.2-9.el6 will be updated ---> Package bridge-utils.x86_64 0:1.2-10.el6 will be an update ---> Package btparser.x86_64 0:0.13-1.el6 will be updated ---> Package btparser.x86_64 0:0.17-2.el6 will be an update ---> Package busybox.x86_64 1:1.15.1-11.el6 will be updated ---> Package busybox.x86_64 1:1.15.1-21.el6_6 will be an update ---> Package c-ares.x86_64 0:1.7.0-5.el6 will be updated ---> Package c-ares.x86_64 0:1.10.0-3.el6 will be an update ---> Package ca-certificates.noarch 0:2010.63-3.el6_1.5 will be updated ---> Package ca-certificates.noarch 0:2015.2.4-65.0.1.el6_6 will be an update --> Processing Dependency: p11-kit-trust >= 0.18.4-2 for package: ca-certificates-2015.2.4-65.0.1.el6_6.noarch --> Processing Dependency: p11-kit >= 0.18.4-2 for package: ca-certificates-2015.2.4-65.0.1.el6_6.noarch ---> Package cairo.x86_64 0:1.8.8-3.1.el6 will be updated ---> Package cairo.x86_64 0:1.8.8-6.el6_6 will be an update ---> Package centos-indexhtml.noarch 0:6-1.el6.centos will be updated ---> Package centos-indexhtml.noarch 0:6-2.el6.centos will be an update ---> Package centos-release.x86_64 0:6-2.el6.centos.7 will be updated ---> Package centos-release.x86_64 0:6-6.el6.centos.12.2 will be an update ---> Package certmonger.x86_64 0:0.50-3.el6 will be updated ---> Package certmonger.x86_64 0:0.75.13-1.el6 will be an update ---> Package chkconfig.x86_64 0:1.3.47-1.el6 will be updated ---> Package chkconfig.x86_64 0:1.3.49.3-2.el6_4.1 will be an update ---> Package cifs-utils.x86_64 0:4.8.1-5.el6 will be updated ---> Package cifs-utils.x86_64 0:4.8.1-19.el6 will be an update ---> Package coreutils.x86_64 0:8.4-31.el6 will be updated ---> Package coreutils.x86_64 0:8.4-37.el6 will be an update ---> Package coreutils-libs.x86_64 0:8.4-31.el6 will be updated ---> Package coreutils-libs.x86_64 0:8.4-37.el6 will be an update ---> Package cpio.x86_64 0:2.10-9.el6 will be updated ---> Package cpio.x86_64 0:2.10-12.el6_5 will be an update ---> Package cpp.x86_64 0:4.4.7-4.el6 will be updated ---> Package cpp.x86_64 0:4.4.7-11.el6 will be an update ---> Package cpuspeed.x86_64 1:1.5-15.el6 will be updated ---> Package cpuspeed.x86_64 1:1.5-20.el6_4 will be an update ---> Package crash.x86_64 0:5.1.8-1.el6 will be updated ---> Package crash.x86_64 0:6.1.0-6.el6_6 will be an update --> Processing Dependency: libsnappy.so.1()(64bit) for package: crash-6.1.0-6.el6_6.x86_64 --> Processing Dependency: liblzo2.so.2()(64bit) for package: crash-6.1.0-6.el6_6.x86_64 ---> Package crash-trace-command.x86_64 0:1.0-3.el6 will be updated ---> Package crash-trace-command.x86_64 0:1.0-5.el6 will be an update ---> Package crda.x86_64 0:1.1.1_2010.11.22-1.el6 will be updated ---> Package crda.x86_64 0:1.1.3_2014.06.13-1.el6 will be an update ---> Package cronie.x86_64 0:1.4.4-7.el6 will be updated ---> Package cronie.x86_64 0:1.4.4-12.el6 will be an update ---> Package cronie-anacron.x86_64 0:1.4.4-7.el6 will be updated ---> Package cronie-anacron.x86_64 0:1.4.4-12.el6 will be an update ---> Package cryptsetup-luks.x86_64 0:1.2.0-6.el6 will be updated ---> Package cryptsetup-luks.x86_64 0:1.2.0-11.el6 will be an update ---> Package cryptsetup-luks-libs.x86_64 0:1.2.0-6.el6 will be updated ---> Package cryptsetup-luks-libs.x86_64 0:1.2.0-11.el6 will be an update ---> Package cups.x86_64 1:1.4.2-44.el6 will be updated ---> Package cups.x86_64 1:1.4.2-67.el6_6.1 will be an update ---> Package cups-libs.x86_64 1:1.4.2-44.el6 will be updated ---> Package cups-libs.x86_64 1:1.4.2-67.el6_6.1 will be an update ---> Package curl.x86_64 0:7.19.7-26.el6_1.2 will be updated ---> Package curl.x86_64 0:7.19.7-40.el6_6.4 will be an update ---> Package cvs.x86_64 0:1.11.23-11.el6_2.1 will be updated ---> Package cvs.x86_64 0:1.11.23-16.el6 will be an update ---> Package cyrus-sasl.x86_64 0:2.1.23-13.el6 will be updated ---> Package cyrus-sasl.x86_64 0:2.1.23-15.el6_6.2 will be an update ---> Package cyrus-sasl-gssapi.x86_64 0:2.1.23-13.el6 will be updated ---> Package cyrus-sasl-gssapi.x86_64 0:2.1.23-15.el6_6.2 will be an update ---> Package cyrus-sasl-lib.x86_64 0:2.1.23-13.el6 will be updated ---> Package cyrus-sasl-lib.x86_64 0:2.1.23-15.el6_6.2 will be an update ---> Package cyrus-sasl-plain.x86_64 0:2.1.23-13.el6 will be updated ---> Package cyrus-sasl-plain.x86_64 0:2.1.23-15.el6_6.2 will be an update ---> Package dash.x86_64 0:0.5.5.1-3.1.el6 will be updated ---> Package dash.x86_64 0:0.5.5.1-4.el6 will be an update ---> Package db4.x86_64 0:4.7.25-18.el6_4 will be updated ---> Package db4.x86_64 0:4.7.25-19.el6_6 will be an update ---> Package db4-cxx.x86_64 0:4.7.25-18.el6_4 will be updated ---> Package db4-cxx.x86_64 0:4.7.25-19.el6_6 will be an update ---> Package db4-devel.x86_64 0:4.7.25-18.el6_4 will be updated ---> Package db4-devel.x86_64 0:4.7.25-19.el6_6 will be an update ---> Package db4-utils.x86_64 0:4.7.25-18.el6_4 will be updated ---> Package db4-utils.x86_64 0:4.7.25-19.el6_6 will be an update ---> Package dbus.x86_64 1:1.2.24-5.el6_1 will be updated ---> Package dbus.x86_64 1:1.2.24-8.el6_6 will be an update ---> Package dbus-glib.x86_64 0:0.86-5.el6 will be updated ---> Package dbus-glib.x86_64 0:0.86-6.el6 will be an update ---> Package dbus-libs.x86_64 1:1.2.24-5.el6_1 will be updated ---> Package dbus-libs.x86_64 1:1.2.24-8.el6_6 will be an update ---> Package device-mapper.x86_64 0:1.02.66-6.el6 will be updated ---> Package device-mapper.x86_64 0:1.02.90-2.el6_6.3 will be an update ---> Package device-mapper-event.x86_64 0:1.02.66-6.el6 will be updated ---> Package device-mapper-event.x86_64 0:1.02.90-2.el6_6.3 will be an update ---> Package device-mapper-event-libs.x86_64 0:1.02.66-6.el6 will be updated ---> Package device-mapper-event-libs.x86_64 0:1.02.90-2.el6_6.3 will be an update ---> Package device-mapper-libs.x86_64 0:1.02.66-6.el6 will be updated ---> Package device-mapper-libs.x86_64 0:1.02.90-2.el6_6.3 will be an update ---> Package dhclient.x86_64 12:4.1.1-25.P1.el6_2.1 will be updated ---> Package dhclient.x86_64 12:4.1.1-43.P1.el6.centos.1 will be an update ---> Package dhcp-common.x86_64 12:4.1.1-25.P1.el6_2.1 will be updated ---> Package dhcp-common.x86_64 12:4.1.1-43.P1.el6.centos.1 will be an update ---> Package dmidecode.x86_64 1:2.11-2.el6 will be updated ---> Package dmidecode.x86_64 1:2.12-5.el6_6.1 will be an update ---> Package dmraid.x86_64 0:1.0.0.rc16-10.el6 will be updated ---> Package dmraid.x86_64 0:1.0.0.rc16-11.el6 will be an update ---> Package dmraid-events.x86_64 0:1.0.0.rc16-10.el6 will be updated ---> Package dmraid-events.x86_64 0:1.0.0.rc16-11.el6 will be an update ---> Package dracut.noarch 0:004-256.el6_2.1 will be updated ---> Package dracut.noarch 0:004-356.el6_6.3 will be an update ---> Package dracut-kernel.noarch 0:004-256.el6_2.1 will be updated ---> Package dracut-kernel.noarch 0:004-356.el6_6.3 will be an update ---> Package e2fsprogs.x86_64 0:1.41.12-18.el6 will be updated ---> Package e2fsprogs.x86_64 0:1.41.12-21.el6 will be an update ---> Package e2fsprogs-devel.x86_64 0:1.41.12-18.el6 will be updated ---> Package e2fsprogs-devel.x86_64 0:1.41.12-21.el6 will be an update ---> Package e2fsprogs-libs.x86_64 0:1.41.12-18.el6 will be updated ---> Package e2fsprogs-libs.x86_64 0:1.41.12-21.el6 will be an update ---> Package efibootmgr.x86_64 0:0.5.4-9.el6 will be updated ---> Package efibootmgr.x86_64 0:0.5.4-12.el6 will be an update ---> Package elfutils.x86_64 0:0.152-1.el6 will be updated ---> Package elfutils.x86_64 0:0.158-3.2.el6 will be an update ---> Package elfutils-libelf.x86_64 0:0.152-1.el6 will be updated ---> Package elfutils-libelf.x86_64 0:0.158-3.2.el6 will be an update ---> Package elfutils-libs.x86_64 0:0.152-1.el6 will be updated ---> Package elfutils-libs.x86_64 0:0.158-3.2.el6 will be an update ---> Package elinks.x86_64 0:0.12-0.20.pre5.el6 will be updated ---> Package elinks.x86_64 0:0.12-0.21.pre5.el6_3 will be an update ---> Package ethtool.x86_64 2:2.6.33-0.3.el6 will be updated ---> Package ethtool.x86_64 2:3.5-5.el6 will be an update ---> Package expect.x86_64 0:5.44.1.15-2.el6 will be updated ---> Package expect.x86_64 0:5.44.1.15-5.el6_4 will be an update ---> Package fail2ban.noarch 0:0.8.14-1.el6 will be updated ---> Package fail2ban.noarch 0:0.9.2-1.el6 will be an update --> Processing Dependency: ipset for package: fail2ban-0.9.2-1.el6.noarch ---> Package file.x86_64 0:5.04-11.el6 will be updated ---> Package file.x86_64 0:5.04-21.el6 will be an update ---> Package file-libs.x86_64 0:5.04-11.el6 will be updated ---> Package file-libs.x86_64 0:5.04-21.el6 will be an update ---> Package flac.x86_64 0:1.2.1-6.1.el6 will be updated ---> Package flac.x86_64 0:1.2.1-7.el6_6 will be an update ---> Package flex.x86_64 0:2.5.35-8.el6 will be updated ---> Package flex.x86_64 0:2.5.35-9.el6 will be an update ---> Package fontconfig.x86_64 0:2.8.0-3.el6 will be updated ---> Package fontconfig.x86_64 0:2.8.0-5.el6 will be an update ---> Package fontconfig-devel.x86_64 0:2.8.0-3.el6 will be updated ---> Package fontconfig-devel.x86_64 0:2.8.0-5.el6 will be an update ---> Package foomatic.x86_64 0:4.0.4-1.el6_1.1 will be updated ---> Package foomatic.x86_64 0:4.0.4-3.el6 will be an update ---> Package fprintd.x86_64 0:0.1-19.git04fd09cfa.el6 will be updated ---> Package fprintd.x86_64 0:0.1-21.git04fd09cfa.el6 will be an update ---> Package fprintd-pam.x86_64 0:0.1-19.git04fd09cfa.el6 will be updated ---> Package fprintd-pam.x86_64 0:0.1-21.git04fd09cfa.el6 will be an update ---> Package freetype.x86_64 0:2.3.11-6.el6_1.8 will be updated ---> Package freetype.x86_64 0:2.3.11-15.el6_6.1 will be an update ---> Package freetype-devel.x86_64 0:2.3.11-6.el6_1.8 will be updated ---> Package freetype-devel.x86_64 0:2.3.11-15.el6_6.1 will be an update ---> Package ftp.x86_64 0:0.17-51.1.el6 will be updated ---> Package ftp.x86_64 0:0.17-54.el6 will be an update ---> Package gawk.x86_64 0:3.1.7-6.el6 will be updated ---> Package gawk.x86_64 0:3.1.7-10.el6 will be an update ---> Package gcc.x86_64 0:4.4.7-4.el6 will be updated ---> Package gcc.x86_64 0:4.4.7-11.el6 will be an update ---> Package gcc-c++.x86_64 0:4.4.7-4.el6 will be updated ---> Package gcc-c++.x86_64 0:4.4.7-11.el6 will be an update ---> Package gdb.x86_64 0:7.2-50.el6 will be updated ---> Package gdb.x86_64 0:7.2-75.el6 will be an update ---> Package gettext.x86_64 0:0.17-16.el6 will be updated ---> Package gettext.x86_64 0:0.17-18.el6 will be an update ---> Package gettext-devel.x86_64 0:0.17-16.el6 will be updated ---> Package gettext-devel.x86_64 0:0.17-18.el6 will be an update ---> Package gettext-libs.x86_64 0:0.17-16.el6 will be updated ---> Package gettext-libs.x86_64 0:0.17-18.el6 will be an update ---> Package ghostscript.x86_64 0:8.70-11.el6_2.6 will be updated ---> Package ghostscript.x86_64 0:8.70-19.el6 will be an update ---> Package ghostscript-fonts.noarch 0:5.50-23.1.el6 will be updated ---> Package ghostscript-fonts.noarch 0:5.50-23.2.el6 will be an update ---> Package glib2.x86_64 0:2.22.5-6.el6 will be updated ---> Package glib2.x86_64 0:2.28.8-4.el6 will be an update --> Processing Dependency: shared-mime-info for package: glib2-2.28.8-4.el6.x86_64 ---> Package glibc.i686 0:2.12-1.132.el6 will be updated ---> Package glibc.x86_64 0:2.12-1.132.el6 will be updated ---> Package glibc.i686 0:2.12-1.149.el6_6.9 will be an update ---> Package glibc.x86_64 0:2.12-1.149.el6_6.9 will be an update ---> Package glibc-common.x86_64 0:2.12-1.132.el6 will be updated ---> Package glibc-common.x86_64 0:2.12-1.149.el6_6.9 will be an update ---> Package glibc-devel.i686 0:2.12-1.132.el6 will be updated ---> Package glibc-devel.x86_64 0:2.12-1.132.el6 will be updated ---> Package glibc-devel.i686 0:2.12-1.149.el6_6.9 will be an update ---> Package glibc-devel.x86_64 0:2.12-1.149.el6_6.9 will be an update ---> Package glibc-headers.x86_64 0:2.12-1.132.el6 will be updated ---> Package glibc-headers.x86_64 0:2.12-1.149.el6_6.9 will be an update ---> Package glibc-static.x86_64 0:2.12-1.132.el6 will be updated ---> Package glibc-static.x86_64 0:2.12-1.149.el6_6.9 will be an update ---> Package gnupg2.x86_64 0:2.0.14-4.el6 will be updated ---> Package gnupg2.x86_64 0:2.0.14-8.el6 will be an update ---> Package gnutls.x86_64 0:2.8.5-4.el6 will be updated ---> Package gnutls.x86_64 0:2.8.5-14.el6_5 will be an update ---> Package grep.x86_64 0:2.6.3-2.el6 will be updated ---> Package grep.x86_64 0:2.6.3-6.el6 will be an update ---> Package grub.x86_64 1:0.97-75.el6 will be updated ---> Package grub.x86_64 1:0.97-93.el6 will be an update ---> Package grubby.x86_64 0:7.0.15-2.el6 will be updated ---> Package grubby.x86_64 0:7.0.15-7.el6 will be an update ---> Package gstreamer-plugins-base.x86_64 0:0.10.29-1.el6 will be updated ---> Package gstreamer-plugins-base.x86_64 0:0.10.29-2.el6 will be an update ---> Package gtk2.x86_64 0:2.18.9-6.el6.centos will be updated --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: latencytop-0.5-9.el6.x86_64 --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: redhat-lsb-graphics-4.0-7.el6.centos.x86_64 --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: python-matplotlib-0.99.1.2-1.el6.x86_64 --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: libwmf-0.2.8.4-23.el6.x86_64 --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: libfprint-0.1.0-19.pre2.el6.x86_64 --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 --> Processing Dependency: libgdk_pixbuf_xlib-2.0.so.0()(64bit) for package: redhat-lsb-graphics-4.0-7.el6.centos.x86_64 ---> Package gtk2.x86_64 0:2.24.23-6.el6 will be an update ---> Package gzip.x86_64 0:1.3.12-18.el6 will be updated ---> Package gzip.x86_64 0:1.3.12-22.el6 will be an update ---> Package hal.x86_64 0:0.5.14-11.el6 will be updated ---> Package hal.x86_64 0:0.5.14-14.el6 will be an update ---> Package hal-libs.x86_64 0:0.5.14-11.el6 will be updated ---> Package hal-libs.x86_64 0:0.5.14-14.el6 will be an update ---> Package hdparm.x86_64 0:9.16-3.4.el6 will be updated ---> Package hdparm.x86_64 0:9.43-4.el6 will be an update ---> Package hwdata.noarch 0:0.233-7.6.el6 will be updated ---> Package hwdata.noarch 0:0.233-11.1.el6 will be an update ---> Package hwloc.x86_64 0:1.1-0.1.el6 will be updated ---> Package hwloc.x86_64 0:1.5-3.el6_5 will be an update ---> Package initscripts.x86_64 0:9.03.27-1.el6.centos.1 will be updated ---> Package initscripts.x86_64 0:9.03.46-1.el6.centos.1 will be an update ---> Package iotop.noarch 0:0.3.2-3.el6 will be updated ---> Package iotop.noarch 0:0.3.2-7.el6 will be an update ---> Package ipa-client.x86_64 0:2.1.3-9.el6 will be updated ---> Package ipa-client.x86_64 0:3.0.0-42.el6.centos will be an update --> Processing Dependency: python-krbV for package: ipa-client-3.0.0-42.el6.centos.x86_64 --> Processing Dependency: libsss_autofs for package: ipa-client-3.0.0-42.el6.centos.x86_64 ---> Package ipa-python.x86_64 0:2.1.3-9.el6 will be updated ---> Package ipa-python.x86_64 0:3.0.0-42.el6.centos will be an update ---> Package iproute.x86_64 0:2.6.32-17.el6 will be updated ---> Package iproute.x86_64 0:2.6.32-33.el6_6 will be an update ---> Package iptables.x86_64 0:1.4.7-5.1.el6_2 will be updated ---> Package iptables.x86_64 0:1.4.7-14.el6 will be an update ---> Package iptables-ipv6.x86_64 0:1.4.7-5.1.el6_2 will be updated ---> Package iptables-ipv6.x86_64 0:1.4.7-14.el6 will be an update ---> Package iputils.x86_64 0:20071127-16.el6 will be updated ---> Package iputils.x86_64 0:20071127-17.el6_4.2 will be an update ---> Package irqbalance.x86_64 2:0.55-29.el6 will be updated ---> Package irqbalance.x86_64 2:1.0.4-10.el6 will be an update ---> Package iw.x86_64 0:0.9.17-4.el6 will be updated ---> Package iw.x86_64 0:3.10-1.1.el6 will be an update ---> Package jasper-libs.x86_64 0:1.900.1-15.el6_1.1 will be updated ---> Package jasper-libs.x86_64 0:1.900.1-16.el6_6.3 will be an update ---> Package java-1.6.0-openjdk.x86_64 1:1.6.0.0-1.43.1.10.6.el6_2 will be updated ---> Package java-1.6.0-openjdk.x86_64 1:1.6.0.35-1.13.7.1.el6_6 will be an update ---> Package kernel.x86_64 0:2.6.32-504.30.3.el6 will be installed ---> Package kernel-firmware.noarch 0:2.6.32-220.7.1.el6 will be updated ---> Package kernel-firmware.noarch 0:2.6.32-504.30.3.el6 will be an update ---> Package kernel-headers.x86_64 0:2.6.32-431.3.1.el6 will be updated ---> Package kernel-headers.x86_64 0:2.6.32-504.30.3.el6 will be an update ---> Package kexec-tools.x86_64 0:2.0.0-209.el6 will be updated ---> Package kexec-tools.x86_64 0:2.0.0-280.el6_6.2 will be an update ---> Package keyutils.x86_64 0:1.4-3.el6 will be updated ---> Package keyutils.x86_64 0:1.4-5.el6 will be an update ---> Package keyutils-libs.x86_64 0:1.4-3.el6 will be updated ---> Package keyutils-libs.x86_64 0:1.4-5.el6 will be an update ---> Package keyutils-libs-devel.x86_64 0:1.4-3.el6 will be updated ---> Package keyutils-libs-devel.x86_64 0:1.4-5.el6 will be an update ---> Package kpartx.x86_64 0:0.4.9-46.el6 will be updated ---> Package kpartx.x86_64 0:0.4.9-80.el6_6.3 will be an update ---> Package krb5-devel.x86_64 0:1.10.3-10.el6_4.6 will be updated ---> Package krb5-devel.x86_64 0:1.10.3-37.el6_6 will be an update ---> Package krb5-libs.x86_64 0:1.10.3-10.el6_4.6 will be updated ---> Package krb5-libs.x86_64 0:1.10.3-37.el6_6 will be an update ---> Package krb5-workstation.x86_64 0:1.10.3-10.el6_4.6 will be updated ---> Package krb5-workstation.x86_64 0:1.10.3-37.el6_6 will be an update ---> Package latencytop.x86_64 0:0.5-3.el6 will be updated ---> Package latencytop.x86_64 0:0.5-9.el6 will be an update --> Processing Dependency: latencytop-common = 0.5-9.el6 for package: latencytop-0.5-9.el6.x86_64 ---> Package less.x86_64 0:436-10.el6 will be updated ---> Package less.x86_64 0:436-13.el6 will be an update ---> Package libSM.x86_64 0:1.1.0-7.1.el6 will be updated ---> Package libSM.x86_64 0:1.2.1-2.el6 will be an update ---> Package libX11.x86_64 0:1.5.0-4.el6 will be updated ---> Package libX11.x86_64 0:1.6.0-2.2.el6 will be an update ---> Package libX11-common.noarch 0:1.5.0-4.el6 will be updated ---> Package libX11-common.noarch 0:1.6.0-2.2.el6 will be an update ---> Package libX11-devel.x86_64 0:1.5.0-4.el6 will be updated ---> Package libX11-devel.x86_64 0:1.6.0-2.2.el6 will be an update ---> Package libXau.x86_64 0:1.0.5-1.el6 will be updated ---> Package libXau.x86_64 0:1.0.6-4.el6 will be an update ---> Package libXau-devel.x86_64 0:1.0.5-1.el6 will be updated ---> Package libXau-devel.x86_64 0:1.0.6-4.el6 will be an update ---> Package libXcomposite.x86_64 0:0.4.1-2.el6 will be updated ---> Package libXcomposite.x86_64 0:0.4.3-4.el6 will be an update ---> Package libXcursor.x86_64 0:1.1.10-2.el6 will be updated ---> Package libXcursor.x86_64 0:1.1.14-2.1.el6 will be an update ---> Package libXdamage.x86_64 0:1.1.2-1.el6 will be updated ---> Package libXdamage.x86_64 0:1.1.3-4.el6 will be an update ---> Package libXdmcp.x86_64 0:1.0.3-1.el6 will be updated ---> Package libXdmcp.x86_64 0:1.1.1-3.el6 will be an update ---> Package libXdmcp-devel.x86_64 0:1.0.3-1.el6 will be updated ---> Package libXdmcp-devel.x86_64 0:1.1.1-3.el6 will be an update ---> Package libXext.x86_64 0:1.1-3.el6 will be updated ---> Package libXext.x86_64 0:1.3.2-2.1.el6 will be an update ---> Package libXfixes.x86_64 0:4.0.4-1.el6 will be updated ---> Package libXfixes.x86_64 0:5.0.1-2.1.el6 will be an update ---> Package libXfont.x86_64 0:1.4.1-2.el6_1 will be updated ---> Package libXfont.x86_64 0:1.4.5-4.el6_6 will be an update ---> Package libXft.x86_64 0:2.1.13-4.1.el6 will be updated ---> Package libXft.x86_64 0:2.3.1-2.el6 will be an update ---> Package libXi.x86_64 0:1.3-3.el6 will be updated ---> Package libXi.x86_64 0:1.7.2-2.2.el6 will be an update ---> Package libXinerama.x86_64 0:1.1-1.el6 will be updated ---> Package libXinerama.x86_64 0:1.1.3-2.1.el6 will be an update ---> Package libXrandr.x86_64 0:1.3.0-4.el6 will be updated ---> Package libXrandr.x86_64 0:1.4.1-2.1.el6 will be an update ---> Package libXrender.x86_64 0:0.9.5-1.el6 will be updated ---> Package libXrender.x86_64 0:0.9.8-2.1.el6 will be an update ---> Package libXt.x86_64 0:1.0.7-1.el6 will be updated ---> Package libXt.x86_64 0:1.1.4-6.1.el6 will be an update ---> Package libXtst.x86_64 0:1.0.99.2-3.el6 will be updated ---> Package libXtst.x86_64 0:1.2.2-2.1.el6 will be an update ---> Package libXv.x86_64 0:1.0.5-1.el6 will be updated ---> Package libXv.x86_64 0:1.0.9-2.1.el6 will be an update ---> Package libXxf86vm.x86_64 0:1.1.0-1.el6 will be updated ---> Package libXxf86vm.x86_64 0:1.1.3-2.1.el6 will be an update ---> Package libblkid.x86_64 0:2.17.2-12.4.el6 will be updated ---> Package libblkid.x86_64 0:2.17.2-12.18.el6 will be an update ---> Package libcgroup.x86_64 0:0.37-3.el6 will be updated ---> Package libcgroup.x86_64 0:0.40.rc1-15.el6_6 will be an update ---> Package libcollection.x86_64 0:0.6.0-6.el6 will be updated ---> Package libcollection.x86_64 0:0.6.2-11.el6 will be an update ---> Package libcom_err.x86_64 0:1.41.12-18.el6 will be updated ---> Package libcom_err.x86_64 0:1.41.12-21.el6 will be an update ---> Package libcom_err-devel.x86_64 0:1.41.12-18.el6 will be updated ---> Package libcom_err-devel.x86_64 0:1.41.12-21.el6 will be an update ---> Package libcurl.x86_64 0:7.19.7-26.el6_1.2 will be updated ---> Package libcurl.x86_64 0:7.19.7-40.el6_6.4 will be an update ---> Package libcurl-devel.x86_64 0:7.19.7-26.el6_1.2 will be updated ---> Package libcurl-devel.x86_64 0:7.19.7-40.el6_6.4 will be an update ---> Package libdhash.x86_64 0:0.4.2-6.el6 will be updated ---> Package libdhash.x86_64 0:0.4.3-11.el6 will be an update ---> Package libdrm.x86_64 0:2.4.25-2.el6 will be updated ---> Package libdrm.x86_64 0:2.4.52-4.el6 will be an update --> Processing Dependency: libpciaccess.so.0()(64bit) for package: libdrm-2.4.52-4.el6.x86_64 ---> Package libevent.x86_64 0:1.4.13-1.el6 will be updated ---> Package libevent.x86_64 0:1.4.13-4.el6 will be an update ---> Package libgcc.i686 0:4.4.7-4.el6 will be updated ---> Package libgcc.x86_64 0:4.4.7-4.el6 will be updated ---> Package libgcc.i686 0:4.4.7-11.el6 will be an update ---> Package libgcc.x86_64 0:4.4.7-11.el6 will be an update ---> Package libgcj.x86_64 0:4.4.6-3.el6 will be updated ---> Package libgcj.x86_64 0:4.4.7-11.el6 will be an update ---> Package libgcrypt.x86_64 0:1.4.5-9.el6 will be updated ---> Package libgcrypt.x86_64 0:1.4.5-11.el6_4 will be an update ---> Package libgfortran.x86_64 0:4.4.6-3.el6 will be updated ---> Package libgfortran.x86_64 0:4.4.7-11.el6 will be an update ---> Package libgomp.x86_64 0:4.4.7-4.el6 will be updated ---> Package libgomp.x86_64 0:4.4.7-11.el6 will be an update ---> Package libgudev1.x86_64 0:147-2.40.el6 will be updated ---> Package libgudev1.x86_64 0:147-2.57.el6 will be an update ---> Package libhugetlbfs.x86_64 0:2.12-2.el6 will be updated ---> Package libhugetlbfs.x86_64 0:2.16-2.el6 will be an update ---> Package libhugetlbfs-utils.x86_64 0:2.12-2.el6 will be updated ---> Package libhugetlbfs-utils.x86_64 0:2.16-2.el6 will be an update ---> Package libini_config.x86_64 0:0.6.1-6.el6 will be updated ---> Package libini_config.x86_64 0:1.1.0-11.el6 will be an update --> Processing Dependency: libbasicobjects.so.0(BASICOBJECTS_0.1.1)(64bit) for package: libini_config-1.1.0-11.el6.x86_64 --> Processing Dependency: libbasicobjects.so.0(BASICOBJECTS_0.1.0)(64bit) for package: libini_config-1.1.0-11.el6.x86_64 --> Processing Dependency: libbasicobjects.so.0()(64bit) for package: libini_config-1.1.0-11.el6.x86_64 ---> Package libipa_hbac.x86_64 0:1.5.1-66.el6_2.3 will be updated ---> Package libipa_hbac.x86_64 0:1.11.6-30.el6_6.4 will be an update ---> Package libipa_hbac-python.x86_64 0:1.5.1-66.el6_2.3 will be updated ---> Package libipa_hbac-python.x86_64 0:1.11.6-30.el6_6.4 will be an update ---> Package libldb.x86_64 0:0.9.10-23.el6 will be updated ---> Package libldb.x86_64 0:1.1.13-3.el6 will be an update ---> Package libnl.x86_64 0:1.1-14.el6 will be updated ---> Package libnl.x86_64 0:1.1.4-2.el6 will be an update ---> Package libpath_utils.x86_64 0:0.2.1-6.el6 will be updated ---> Package libpath_utils.x86_64 0:0.2.1-11.el6 will be an update ---> Package libpcap.x86_64 14:1.0.0-6.20091201git117cb5.el6 will be updated ---> Package libpcap.x86_64 14:1.4.0-1.20130826git2dbcaa1.el6 will be an update ---> Package libref_array.x86_64 0:0.1.1-6.el6 will be updated ---> Package libref_array.x86_64 0:0.1.4-11.el6 will be an update ---> Package libreport.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport.x86_64 0:2.0.9-21.el6.centos will be an update --> Processing Dependency: libreport-compat = 2.0.9-21.el6.centos for package: libreport-2.0.9-21.el6.centos.x86_64 --> Processing Dependency: libproxy.so.0()(64bit) for package: libreport-2.0.9-21.el6.centos.x86_64 ---> Package libreport-cli.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport-cli.x86_64 0:2.0.9-21.el6.centos will be an update ---> Package libreport-plugin-kerneloops.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport-plugin-kerneloops.x86_64 0:2.0.9-21.el6.centos will be an update ---> Package libreport-plugin-logger.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport-plugin-logger.x86_64 0:2.0.9-21.el6.centos will be an update ---> Package libreport-plugin-mailx.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport-plugin-mailx.x86_64 0:2.0.9-21.el6.centos will be an update ---> Package libreport-plugin-reportuploader.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport-plugin-reportuploader.x86_64 0:2.0.9-21.el6.centos will be an update ---> Package libreport-plugin-rhtsupport.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport-plugin-rhtsupport.x86_64 0:2.0.9-21.el6.centos will be an update ---> Package libreport-python.x86_64 0:2.0.5-20.el6 will be updated ---> Package libreport-python.x86_64 0:2.0.9-21.el6.centos will be an update ---> Package libselinux.x86_64 0:2.0.94-5.2.el6 will be updated ---> Package libselinux.x86_64 0:2.0.94-5.8.el6 will be an update ---> Package libselinux-devel.x86_64 0:2.0.94-5.2.el6 will be updated ---> Package libselinux-devel.x86_64 0:2.0.94-5.8.el6 will be an update ---> Package libselinux-utils.x86_64 0:2.0.94-5.2.el6 will be updated ---> Package libselinux-utils.x86_64 0:2.0.94-5.8.el6 will be an update ---> Package libsemanage.x86_64 0:2.0.43-4.1.el6 will be updated ---> Package libsemanage.x86_64 0:2.0.43-4.2.el6 will be an update ---> Package libss.x86_64 0:1.41.12-18.el6 will be updated ---> Package libss.x86_64 0:1.41.12-21.el6 will be an update ---> Package libssh2.x86_64 0:1.2.2-7.el6_1.1 will be updated ---> Package libssh2.x86_64 0:1.4.2-1.el6_6.1 will be an update ---> Package libstdc++.x86_64 0:4.4.7-4.el6 will be updated ---> Package libstdc++.x86_64 0:4.4.7-11.el6 will be an update ---> Package libstdc++-devel.x86_64 0:4.4.7-4.el6 will be updated ---> Package libstdc++-devel.x86_64 0:4.4.7-11.el6 will be an update ---> Package libtalloc.x86_64 0:2.0.1-1.1.el6 will be updated ---> Package libtalloc.x86_64 0:2.0.7-2.el6 will be an update ---> Package libtar.x86_64 0:1.2.11-16.el6 will be updated ---> Package libtar.x86_64 0:1.2.11-17.el6_4.1 will be an update ---> Package libtasn1.x86_64 0:2.3-3.el6 will be updated ---> Package libtasn1.x86_64 0:2.3-6.el6_5 will be an update ---> Package libtdb.x86_64 0:1.2.1-3.el6 will be updated ---> Package libtdb.x86_64 0:1.2.10-1.el6 will be an update ---> Package libtevent.x86_64 0:0.9.8-8.el6 will be updated ---> Package libtevent.x86_64 0:0.9.18-3.el6 will be an update ---> Package libtiff.x86_64 0:3.9.4-1.el6_0.3 will be updated ---> Package libtiff.x86_64 0:3.9.4-10.el6_5 will be an update ---> Package libtiff-devel.x86_64 0:3.9.4-1.el6_0.3 will be updated ---> Package libtiff-devel.x86_64 0:3.9.4-10.el6_5 will be an update ---> Package libtirpc.x86_64 0:0.2.1-5.el6 will be updated ---> Package libtirpc.x86_64 0:0.2.1-10.el6 will be an update ---> Package libudev.x86_64 0:147-2.40.el6 will be updated ---> Package libudev.x86_64 0:147-2.57.el6 will be an update ---> Package libunistring.x86_64 0:0.9.3-4.el6 will be updated ---> Package libunistring.x86_64 0:0.9.3-5.el6 will be an update ---> Package libusb1.x86_64 0:1.0.3-1.el6 will be updated ---> Package libusb1.x86_64 0:1.0.9-0.6.rc1.el6 will be an update ---> Package libuser.x86_64 0:0.56.13-4.el6_0.1 will be updated ---> Package libuser.x86_64 0:0.56.13-5.el6 will be an update ---> Package libuuid.x86_64 0:2.17.2-12.4.el6 will be updated ---> Package libuuid.x86_64 0:2.17.2-12.18.el6 will be an update ---> Package libvisual.x86_64 0:0.4.0-9.1.el6 will be updated ---> Package libvisual.x86_64 0:0.4.0-10.el6 will be an update ---> Package libwmf.x86_64 0:0.2.8.4-22.el6.centos will be updated ---> Package libwmf.x86_64 0:0.2.8.4-23.el6 will be an update ---> Package libwmf-lite.x86_64 0:0.2.8.4-22.el6.centos will be updated ---> Package libwmf-lite.x86_64 0:0.2.8.4-23.el6 will be an update ---> Package libxcb.x86_64 0:1.5-1.el6 will be updated ---> Package libxcb.x86_64 0:1.9.1-2.el6 will be an update ---> Package libxcb-devel.x86_64 0:1.5-1.el6 will be updated ---> Package libxcb-devel.x86_64 0:1.9.1-2.el6 will be an update ---> Package libxml2.x86_64 0:2.7.6-4.el6_2.4 will be updated ---> Package libxml2.x86_64 0:2.7.6-17.el6_6.1 will be an update ---> Package libxml2-devel.x86_64 0:2.7.6-4.el6_2.4 will be updated ---> Package libxml2-devel.x86_64 0:2.7.6-17.el6_6.1 will be an update ---> Package libxml2-python.x86_64 0:2.7.6-4.el6_2.4 will be updated ---> Package libxml2-python.x86_64 0:2.7.6-17.el6_6.1 will be an update ---> Package libxslt.x86_64 0:1.1.26-2.el6 will be updated ---> Package libxslt.x86_64 0:1.1.26-2.el6_3.1 will be an update ---> Package logrotate.x86_64 0:3.7.8-12.el6_0.1 will be updated ---> Package logrotate.x86_64 0:3.7.8-17.el6 will be an update ---> Package ltrace.x86_64 0:0.5-16.45svn.1.el6 will be updated ---> Package ltrace.x86_64 0:0.5-28.45svn.el6 will be an update ---> Package lvm2.x86_64 0:2.02.87-6.el6 will be updated ---> Package lvm2.x86_64 0:2.02.111-2.el6_6.3 will be an update --> Processing Dependency: device-mapper-persistent-data >= 0.3.2-1 for package: lvm2-2.02.111-2.el6_6.3.x86_64 ---> Package lvm2-libs.x86_64 0:2.02.87-6.el6 will be updated ---> Package lvm2-libs.x86_64 0:2.02.111-2.el6_6.3 will be an update ---> Package mailx.x86_64 0:12.4-6.el6 will be updated ---> Package mailx.x86_64 0:12.4-8.el6_6 will be an update ---> Package man.x86_64 0:1.6f-29.el6 will be updated ---> Package man.x86_64 0:1.6f-32.el6 will be an update ---> Package man-pages.noarch 0:3.22-17.el6 will be updated ---> Package man-pages.noarch 0:3.22-20.el6 will be an update ---> Package man-pages-overrides.noarch 0:6.2.3-2.el6 will be updated ---> Package man-pages-overrides.noarch 0:6.6.3-2.el6 will be an update ---> Package mcelog.x86_64 1:1.0pre3_20110718-0.7.el6 will be updated ---> Package mcelog.x86_64 2:101-0.el6 will be an update ---> Package mdadm.x86_64 0:3.2.2-9.el6 will be updated ---> Package mdadm.x86_64 0:3.3-6.el6_6.1 will be an update ---> Package mesa-dri-drivers.x86_64 0:7.11-3.el6 will be updated ---> Package mesa-dri-drivers.x86_64 0:10.1.2-2.el6 will be an update --> Processing Dependency: mesa-dri1-drivers >= 7.11-6 for package: mesa-dri-drivers-10.1.2-2.el6.x86_64 --> Processing Dependency: mesa-dri-filesystem(x86-64) for package: mesa-dri-drivers-10.1.2-2.el6.x86_64 --> Processing Dependency: libLLVM-3.4-mesa.so(libLLVM-3.4-mesa.so)(64bit) for package: mesa-dri-drivers-10.1.2-2.el6.x86_64 --> Processing Dependency: libLLVM-3.4-mesa.so()(64bit) for package: mesa-dri-drivers-10.1.2-2.el6.x86_64 ---> Package mesa-libGL.x86_64 0:7.11-3.el6 will be updated ---> Package mesa-libGL.x86_64 0:10.1.2-2.el6 will be an update ---> Package mesa-libGLU.x86_64 0:7.11-3.el6 will be updated ---> Package mesa-libGLU.x86_64 0:10.1.2-2.el6 will be an update ---> Package microcode_ctl.x86_64 1:1.17-9.el6 will be updated ---> Package microcode_ctl.x86_64 1:1.17-19.el6 will be an update ---> Package mlocate.x86_64 0:0.22.2-3.el6 will be updated ---> Package mlocate.x86_64 0:0.22.2-4.el6 will be an update ---> Package module-init-tools.x86_64 0:3.9-19.el6_2 will be updated ---> Package module-init-tools.x86_64 0:3.9-24.el6 will be an update ---> Package net-tools.x86_64 0:1.60-109.el6 will be updated ---> Package net-tools.x86_64 0:1.60-110.el6_2 will be an update ---> Package nfs-utils.x86_64 1:1.2.3-15.el6 will be updated ---> Package nfs-utils.x86_64 1:1.2.3-54.el6 will be an update ---> Package nfs-utils-lib.x86_64 0:1.1.5-4.el6 will be updated ---> Package nfs-utils-lib.x86_64 0:1.1.5-9.el6_6 will be an update ---> Package nfs4-acl-tools.x86_64 0:0.3.3-5.el6 will be updated ---> Package nfs4-acl-tools.x86_64 0:0.3.3-6.el6 will be an update ---> Package nspr.x86_64 0:4.8.9-3.el6_2 will be updated ---> Package nspr.x86_64 0:4.10.8-1.el6_6 will be an update ---> Package nss.x86_64 0:3.13.1-7.el6_2 will be updated ---> Package nss.x86_64 0:3.19.1-3.el6_6 will be an update ---> Package nss-softokn.x86_64 0:3.12.9-11.el6 will be updated ---> Package nss-softokn.x86_64 0:3.14.3-22.el6_6 will be an update ---> Package nss-softokn-freebl.i686 0:3.12.9-11.el6 will be updated ---> Package nss-softokn-freebl.x86_64 0:3.12.9-11.el6 will be updated ---> Package nss-softokn-freebl.i686 0:3.14.3-22.el6_6 will be an update ---> Package nss-softokn-freebl.x86_64 0:3.14.3-22.el6_6 will be an update ---> Package nss-sysinit.x86_64 0:3.13.1-7.el6_2 will be updated ---> Package nss-sysinit.x86_64 0:3.19.1-3.el6_6 will be an update ---> Package nss-tools.x86_64 0:3.13.1-7.el6_2 will be updated ---> Package nss-tools.x86_64 0:3.19.1-3.el6_6 will be an update ---> Package nss-util.x86_64 0:3.13.1-3.el6_2 will be updated ---> Package nss-util.x86_64 0:3.19.1-1.el6_6 will be an update ---> Package ntp.x86_64 0:4.2.4p8-2.el6.centos will be updated ---> Package ntp.x86_64 0:4.2.6p5-3.el6.centos will be an update ---> Package ntpdate.x86_64 0:4.2.4p8-2.el6.centos will be updated ---> Package ntpdate.x86_64 0:4.2.6p5-3.el6.centos will be an update ---> Package ntsysv.x86_64 0:1.3.47-1.el6 will be updated ---> Package ntsysv.x86_64 0:1.3.49.3-2.el6_4.1 will be an update ---> Package numactl.x86_64 0:2.0.3-9.el6 will be updated ---> Package numactl.x86_64 0:2.0.9-2.el6 will be an update ---> Package numpy.x86_64 0:1.3.0-6.2.el6 will be updated ---> Package numpy.x86_64 0:1.4.1-9.el6 will be an update ---> Package openjpeg-libs.x86_64 0:1.3-7.el6 will be updated ---> Package openjpeg-libs.x86_64 0:1.3-10.el6_5 will be an update ---> Package openldap.x86_64 0:2.4.23-20.el6 will be updated ---> Package openldap.x86_64 0:2.4.39-8.el6 will be an update ---> Package openssh.x86_64 0:5.3p1-70.el6_2.2 will be updated ---> Package openssh.x86_64 0:5.3p1-104.el6_6.1 will be an update ---> Package openssh-clients.x86_64 0:5.3p1-70.el6_2.2 will be updated ---> Package openssh-clients.x86_64 0:5.3p1-104.el6_6.1 will be an update ---> Package openssh-server.x86_64 0:5.3p1-70.el6_2.2 will be updated ---> Package openssh-server.x86_64 0:5.3p1-104.el6_6.1 will be an update ---> Package openssl.x86_64 0:1.0.1e-16.el6_5.4 will be updated ---> Package openssl.x86_64 0:1.0.1e-30.el6.11 will be an update ---> Package openssl-devel.x86_64 0:1.0.1e-16.el6_5.4 will be updated ---> Package openssl-devel.x86_64 0:1.0.1e-30.el6.11 will be an update ---> Package oprofile.x86_64 0:0.9.6-21.el6 will be updated ---> Package oprofile.x86_64 0:0.9.9-6.el6_6 will be an update ---> Package pam.x86_64 0:1.1.1-17.el6 will be updated ---> Package pam.x86_64 0:1.1.1-20.el6 will be an update ---> Package pam-devel.x86_64 0:1.1.1-17.el6 will be updated ---> Package pam-devel.x86_64 0:1.1.1-20.el6 will be an update ---> Package pango.x86_64 0:1.28.1-3.el6_0.5.1.centos will be updated ---> Package pango.x86_64 0:1.28.1-10.el6 will be an update ---> Package parted.x86_64 0:2.1-17.el6 will be updated ---> Package parted.x86_64 0:2.1-25.el6 will be an update ---> Package pciutils.x86_64 0:3.1.4-11.el6 will be updated ---> Package pciutils.x86_64 0:3.1.10-4.el6 will be an update ---> Package pciutils-libs.x86_64 0:3.1.4-11.el6 will be updated ---> Package pciutils-libs.x86_64 0:3.1.10-4.el6 will be an update ---> Package pcre.x86_64 0:7.8-3.1.el6 will be updated ---> Package pcre.x86_64 0:7.8-6.el6 will be an update ---> Package pcre-devel.x86_64 0:7.8-3.1.el6 will be updated ---> Package pcre-devel.x86_64 0:7.8-6.el6 will be an update ---> Package perf.x86_64 0:2.6.32-220.7.1.el6 will be updated ---> Package perf.x86_64 0:2.6.32-504.30.3.el6 will be an update ---> Package phonon-backend-gstreamer.x86_64 1:4.6.2-20.el6 will be updated ---> Package phonon-backend-gstreamer.x86_64 1:4.6.2-28.el6_5 will be an update ---> Package pixman.x86_64 0:0.18.4-1.el6_0.1 will be updated ---> Package pixman.x86_64 0:0.32.4-4.el6 will be an update ---> Package plymouth.x86_64 0:0.8.3-24.el6.centos will be updated ---> Package plymouth.x86_64 0:0.8.3-27.el6.centos.1 will be an update ---> Package plymouth-core-libs.x86_64 0:0.8.3-24.el6.centos will be updated ---> Package plymouth-core-libs.x86_64 0:0.8.3-27.el6.centos.1 will be an update ---> Package plymouth-scripts.x86_64 0:0.8.3-24.el6.centos will be updated ---> Package plymouth-scripts.x86_64 0:0.8.3-27.el6.centos.1 will be an update ---> Package pm-utils.x86_64 0:1.2.5-9.el6 will be updated ---> Package pm-utils.x86_64 0:1.2.5-11.el6 will be an update ---> Package policycoreutils.x86_64 0:2.0.83-19.21.el6_2 will be updated ---> Package policycoreutils.x86_64 0:2.0.83-19.47.el6_6.1 will be an update ---> Package polkit.x86_64 0:0.96-2.el6_0.1 will be updated ---> Package polkit.x86_64 0:0.96-7.el6 will be an update ---> Package poppler.x86_64 0:0.12.4-3.el6_0.1 will be updated ---> Package poppler.x86_64 0:0.12.4-4.el6_6.1 will be an update ---> Package poppler-utils.x86_64 0:0.12.4-3.el6_0.1 will be updated ---> Package poppler-utils.x86_64 0:0.12.4-4.el6_6.1 will be an update ---> Package portreserve.x86_64 0:0.0.4-4.el6_1.1 will be updated ---> Package portreserve.x86_64 0:0.0.4-9.el6 will be an update ---> Package powertop.x86_64 0:1.11-6.el6 will be updated ---> Package powertop.x86_64 0:2.3-3.el6 will be an update ---> Package prelink.x86_64 0:0.4.6-3.el6 will be updated ---> Package prelink.x86_64 0:0.4.6-3.1.el6_4 will be an update ---> Package procps.x86_64 0:3.2.8-21.el6 will be updated ---> Package procps.x86_64 0:3.2.8-30.el6 will be an update ---> Package psacct.x86_64 0:6.3.2-63.el6 will be updated ---> Package psacct.x86_64 0:6.3.2-63.el6_3.3 will be an update ---> Package psmisc.x86_64 0:22.6-15.el6_0.1 will be updated ---> Package psmisc.x86_64 0:22.6-19.el6_5 will be an update ---> Package pulseaudio-libs.x86_64 0:0.9.21-13.el6 will be updated ---> Package pulseaudio-libs.x86_64 0:0.9.21-17.el6 will be an update ---> Package python.x86_64 0:2.6.6-29.el6 will be updated ---> Package python.x86_64 0:2.6.6-52.el6 will be an update ---> Package python-devel.x86_64 0:2.6.6-29.el6 will be updated ---> Package python-devel.x86_64 0:2.6.6-52.el6 will be an update ---> Package python-ethtool.x86_64 0:0.6-1.el6 will be updated ---> Package python-ethtool.x86_64 0:0.6-5.el6 will be an update ---> Package python-kerberos.x86_64 0:1.1-6.2.el6 will be updated ---> Package python-kerberos.x86_64 0:1.1-7.el6 will be an update ---> Package python-libs.x86_64 0:2.6.6-29.el6 will be updated ---> Package python-libs.x86_64 0:2.6.6-52.el6 will be an update ---> Package python-nss.x86_64 0:0.11-3.el6 will be updated ---> Package python-nss.x86_64 0:0.13-1.el6 will be an update ---> Package python-tools.x86_64 0:2.6.6-29.el6 will be updated ---> Package python-tools.x86_64 0:2.6.6-52.el6 will be an update ---> Package python-urlgrabber.noarch 0:3.9.1-8.el6 will be updated ---> Package python-urlgrabber.noarch 0:3.9.1-9.el6 will be an update ---> Package ql2400-firmware.noarch 0:5.06.02-1.el6 will be updated ---> Package ql2400-firmware.noarch 0:7.03.00-1.el6_5 will be an update ---> Package ql2500-firmware.noarch 0:5.06.02-1.el6 will be updated ---> Package ql2500-firmware.noarch 0:7.03.00-1.el6_5 will be an update ---> Package qpid-cpp-client.x86_64 0:0.12-6.el6 will be updated --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 ---> Package qpid-cpp-client.x86_64 0:0.14-22.el6_3 will be an update ---> Package qpid-cpp-client-ssl.x86_64 0:0.12-6.el6 will be updated ---> Package qpid-cpp-client-ssl.x86_64 0:0.14-22.el6_3 will be an update ---> Package qpid-cpp-server.x86_64 0:0.12-6.el6 will be updated ---> Package qpid-cpp-server.x86_64 0:0.14-22.el6_3 will be an update ---> Package qpid-cpp-server-ssl.x86_64 0:0.12-6.el6 will be updated ---> Package qpid-cpp-server-ssl.x86_64 0:0.14-22.el6_3 will be an update ---> Package qpid-qmf.x86_64 0:0.12-6.el6 will be updated ---> Package qpid-qmf.x86_64 0:0.14-14.el6_3 will be an update ---> Package qt.x86_64 1:4.6.2-20.el6 will be updated ---> Package qt.x86_64 1:4.6.2-28.el6_5 will be an update ---> Package qt-sqlite.x86_64 1:4.6.2-20.el6 will be updated ---> Package qt-sqlite.x86_64 1:4.6.2-28.el6_5 will be an update ---> Package qt-x11.x86_64 1:4.6.2-20.el6 will be updated ---> Package qt-x11.x86_64 1:4.6.2-28.el6_5 will be an update ---> Package quota.x86_64 1:3.17-16.el6 will be updated ---> Package quota.x86_64 1:3.17-21.el6_5 will be an update ---> Package quota-devel.x86_64 1:3.17-16.el6 will be updated ---> Package quota-devel.x86_64 1:3.17-21.el6_5 will be an update ---> Package readahead.x86_64 1:1.5.6-1.el6 will be updated ---> Package readahead.x86_64 1:1.5.6-2.el6 will be an update ---> Package readline.x86_64 0:6.0-3.el6 will be updated ---> Package readline.x86_64 0:6.0-4.el6 will be an update ---> Package redhat-logos.noarch 0:60.0.14-10.el6.centos will be updated ---> Package redhat-logos.noarch 0:60.0.14-12.el6.centos will be an update ---> Package redhat-lsb.x86_64 0:4.0-3.el6.centos will be updated ---> Package redhat-lsb.x86_64 0:4.0-7.el6.centos will be an update --> 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-compat(x86-64) = 4.0-7.el6.centos for package: redhat-lsb-4.0-7.el6.centos.x86_64 ---> Package redhat-lsb-graphics.x86_64 0:4.0-3.el6.centos will be updated ---> Package redhat-lsb-graphics.x86_64 0:4.0-7.el6.centos will be an update ---> Package redhat-lsb-printing.x86_64 0:4.0-3.el6.centos will be updated ---> Package redhat-lsb-printing.x86_64 0:4.0-7.el6.centos will be an update ---> Package rpcbind.x86_64 0:0.2.0-8.el6 will be updated ---> Package rpcbind.x86_64 0:0.2.0-11.el6 will be an update ---> Package rpm.x86_64 0:4.8.0-19.el6 will be updated ---> Package rpm.x86_64 0:4.8.0-38.el6_6 will be an update ---> Package rpm-libs.x86_64 0:4.8.0-19.el6 will be updated ---> Package rpm-libs.x86_64 0:4.8.0-38.el6_6 will be an update ---> Package rpm-python.x86_64 0:4.8.0-19.el6 will be updated ---> Package rpm-python.x86_64 0:4.8.0-38.el6_6 will be an update ---> Package rpmforge-release.x86_64 0:0.5.2-2.el6.rf will be updated ---> Package rpmforge-release.x86_64 0:0.5.3-1.el6.rf will be an update ---> Package rsync.x86_64 0:3.0.6-5.el6_0.1 will be updated ---> Package rsync.x86_64 0:3.0.6-12.el6 will be an update ---> Package rsyslog.x86_64 0:4.6.2-12.el6 will be updated ---> Package rsyslog.x86_64 0:5.8.10-10.el6_6 will be an update ---> Package samba-client.x86_64 0:3.5.10-114.el6 will be updated ---> Package samba-client.x86_64 0:3.6.23-14.el6_6 will be an update ---> Package samba-common.x86_64 0:3.5.10-114.el6 will be updated ---> Package samba-common.x86_64 0:3.6.23-14.el6_6 will be an update ---> Package samba-winbind-clients.x86_64 0:3.5.10-114.el6 will be updated ---> Package samba-winbind-clients.x86_64 0:3.6.23-14.el6_6 will be an update --> Processing Dependency: samba-winbind = 3.6.23-14.el6_6 for package: samba-winbind-clients-3.6.23-14.el6_6.x86_64 ---> Package selinux-policy.noarch 0:3.7.19-126.el6_2.10 will be updated ---> Package selinux-policy.noarch 0:3.7.19-260.el6_6.5 will be an update ---> Package selinux-policy-targeted.noarch 0:3.7.19-126.el6_2.10 will be updated ---> Package selinux-policy-targeted.noarch 0:3.7.19-260.el6_6.5 will be an update ---> Package setup.noarch 0:2.8.14-13.el6 will be updated ---> Package setup.noarch 0:2.8.14-20.el6_4.1 will be an update ---> Package setuptool.x86_64 0:1.19.9-3.el6 will be updated ---> Package setuptool.x86_64 0:1.19.9-4.el6 will be an update ---> Package shadow-utils.x86_64 2:4.1.4.2-13.el6 will be updated ---> Package shadow-utils.x86_64 2:4.1.4.2-19.el6_6.1 will be an update ---> Package smartmontools.x86_64 1:5.39.1-5.el6 will be updated ---> Package smartmontools.x86_64 1:5.43-1.el6 will be an update ---> Package sos.noarch 0:2.2-17.el6 will be updated ---> Package sos.noarch 0:2.2-68.el6.centos will be an update ---> Package sssd.x86_64 0:1.5.1-66.el6_2.3 will be updated ---> Package sssd.x86_64 0:1.11.6-30.el6_6.4 will be an update --> Processing Dependency: sssd-proxy = 1.11.6-30.el6_6.4 for package: sssd-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: sssd-ldap = 1.11.6-30.el6_6.4 for package: sssd-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: sssd-krb5 = 1.11.6-30.el6_6.4 for package: sssd-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: sssd-ipa = 1.11.6-30.el6_6.4 for package: sssd-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: sssd-common-pac = 1.11.6-30.el6_6.4 for package: sssd-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: sssd-ad = 1.11.6-30.el6_6.4 for package: sssd-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: python-sssdconfig = 1.11.6-30.el6_6.4 for package: sssd-1.11.6-30.el6_6.4.x86_64 ---> Package sssd-client.x86_64 0:1.5.1-66.el6_2.3 will be updated ---> Package sssd-client.x86_64 0:1.11.6-30.el6_6.4 will be an update ---> Package strace.x86_64 0:4.5.19-1.11.el6_2.1 will be updated ---> Package strace.x86_64 0:4.5.19-1.19.el6 will be an update ---> Package stunnel.x86_64 0:4.29-2.el6 will be updated ---> Package stunnel.x86_64 0:4.29-3.el6_6.1 will be an update ---> Package sudo.x86_64 0:1.7.4p5-7.el6 will be updated ---> Package sudo.x86_64 0:1.8.6p3-15.el6 will be an update ---> Package sysstat.x86_64 0:9.0.4-18.el6 will be updated ---> Package sysstat.x86_64 0:9.0.4-27.el6 will be an update ---> Package system-config-firewall-base.noarch 0:1.2.27-5.el6 will be updated ---> Package system-config-firewall-base.noarch 0:1.2.27-7.2.el6_6 will be an update ---> Package system-config-firewall-tui.noarch 0:1.2.27-5.el6 will be updated ---> Package system-config-firewall-tui.noarch 0:1.2.27-7.2.el6_6 will be an update ---> Package systemtap-runtime.x86_64 0:1.6-4.el6 will be updated ---> Package systemtap-runtime.x86_64 0:2.5-5.el6 will be an update ---> Package sysvinit-tools.x86_64 0:2.87-4.dsf.el6 will be updated ---> Package sysvinit-tools.x86_64 0:2.87-5.dsf.el6 will be an update ---> Package tar.x86_64 2:1.23-3.el6 will be updated ---> Package tar.x86_64 2:1.23-11.el6 will be an update ---> Package tcpdump.x86_64 14:4.0.0-3.20090921gitdf3cb4.1.el6 will be updated ---> Package tcpdump.x86_64 14:4.0.0-3.20090921gitdf3cb4.2.el6 will be an update ---> Package tcsh.x86_64 0:6.17-14.el6 will be updated ---> Package tcsh.x86_64 0:6.17-25.el6_6 will be an update ---> Package tkinter.x86_64 0:2.6.6-29.el6 will be updated ---> Package tkinter.x86_64 0:2.6.6-52.el6 will be an update ---> Package trace-cmd.x86_64 0:1.0.4-7.el6 will be updated ---> Package trace-cmd.x86_64 0:1.0.5-11.el6 will be an update ---> Package tzdata.noarch 0:2011n-2.el6 will be updated ---> Package tzdata.noarch 0:2015e-1.el6 will be an update ---> Package tzdata-java.noarch 0:2011n-2.el6 will be updated ---> Package tzdata-java.noarch 0:2015e-1.el6 will be an update ---> Package udev.x86_64 0:147-2.40.el6 will be updated ---> Package udev.x86_64 0:147-2.57.el6 will be an update ---> Package unzip.x86_64 0:6.0-1.el6 will be updated ---> Package unzip.x86_64 0:6.0-2.el6_6 will be an update ---> Package upstart.x86_64 0:0.6.5-10.el6 will be updated ---> Package upstart.x86_64 0:0.6.5-13.el6_5.3 will be an update ---> Package util-linux-ng.x86_64 0:2.17.2-12.4.el6 will be updated ---> Package util-linux-ng.x86_64 0:2.17.2-12.18.el6 will be an update ---> Package valgrind.x86_64 1:3.6.0-4.el6 will be updated ---> Package valgrind.x86_64 1:3.8.1-3.7.el6 will be an update ---> Package vim-common.x86_64 2:7.2.411-1.6.el6 will be updated ---> Package vim-common.x86_64 2:7.2.411-1.8.el6 will be an update ---> Package vim-enhanced.x86_64 2:7.2.411-1.6.el6 will be updated ---> Package vim-enhanced.x86_64 2:7.2.411-1.8.el6 will be an update ---> Package vim-minimal.x86_64 2:7.2.411-1.6.el6 will be updated ---> Package vim-minimal.x86_64 2:7.2.411-1.8.el6 will be an update ---> Package virt-what.x86_64 0:1.11-1.1.el6 will be updated ---> Package virt-what.x86_64 0:1.11-1.2.el6 will be an update ---> Package wget.x86_64 0:1.12-1.11.el6_5 will be updated ---> Package wget.x86_64 0:1.12-5.el6_6.1 will be an update ---> Package xml-common.noarch 0:0.6.3-32.el6 will be updated ---> Package xml-common.noarch 0:0.6.3-33.el6 will be an update ---> Package xmlrpc-c.x86_64 0:1.16.24-1200.1840.el6_1.4 will be updated ---> Package xmlrpc-c.x86_64 0:1.16.24-1210.1840.el6 will be an update ---> Package xmlrpc-c-client.x86_64 0:1.16.24-1200.1840.el6_1.4 will be updated ---> Package xmlrpc-c-client.x86_64 0:1.16.24-1210.1840.el6 will be an update ---> Package xorg-x11-drv-ati-firmware.noarch 0:6.14.2-7.el6 will be updated ---> Package xorg-x11-drv-ati-firmware.noarch 0:7.3.99-2.el6 will be an update ---> Package xorg-x11-proto-devel.noarch 0:7.6-13.el6 will be updated ---> Package xorg-x11-proto-devel.noarch 0:7.7-9.el6 will be an update ---> Package xz.x86_64 0:4.999.9-0.3.beta.20091007git.el6 will be updated ---> Package xz.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be an update ---> Package xz-libs.x86_64 0:4.999.9-0.3.beta.20091007git.el6 will be updated ---> Package xz-libs.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be an update ---> Package xz-lzma-compat.x86_64 0:4.999.9-0.3.beta.20091007git.el6 will be updated ---> Package xz-lzma-compat.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be an update ---> Package ypbind.x86_64 3:1.20.4-29.el6 will be updated ---> Package ypbind.x86_64 3:1.20.4-30.el6 will be an update ---> Package yum.noarch 0:3.2.29-22.el6.centos will be updated ---> Package yum.noarch 0:3.2.29-60.el6.centos will be an update ---> Package yum-plugin-fastestmirror.noarch 0:1.1.30-10.el6 will be updated ---> Package yum-plugin-fastestmirror.noarch 0:1.1.30-30.el6 will be an update ---> Package yum-plugin-priorities.noarch 0:1.1.30-17.el6_5 will be updated ---> Package yum-plugin-priorities.noarch 0:1.1.30-30.el6 will be an update ---> Package yum-plugin-security.noarch 0:1.1.30-10.el6 will be updated ---> Package yum-plugin-security.noarch 0:1.1.30-30.el6 will be an update ---> Package yum-utils.noarch 0:1.1.30-10.el6 will be updated ---> Package yum-utils.noarch 0:1.1.30-30.el6 will be an update --> Running transaction check ---> Package abrt-tui.x86_64 0:2.0.8-26.el6.centos will be installed ---> Package device-mapper-persistent-data.x86_64 0:0.3.2-1.el6 will be installed ---> Package gdk-pixbuf2.x86_64 0:2.24.1-5.el6 will be installed ---> Package ipset.x86_64 0:6.11-3.el6 will be installed --> Processing Dependency: libmnl.so.0(LIBMNL_1.0)(64bit) for package: ipset-6.11-3.el6.x86_64 --> Processing Dependency: libmnl.so.0()(64bit) for package: ipset-6.11-3.el6.x86_64 ---> Package latencytop-common.x86_64 0:0.5-9.el6 will be installed ---> Package libbasicobjects.x86_64 0:0.1.1-11.el6 will be installed ---> Package libpciaccess.x86_64 0:0.13.3-0.1.el6 will be installed ---> Package libproxy.x86_64 0:0.3.0-10.el6 will be installed --> Processing Dependency: libproxy-python = 0.3.0-10.el6 for package: libproxy-0.3.0-10.el6.x86_64 --> Processing Dependency: libproxy-bin = 0.3.0-10.el6 for package: libproxy-0.3.0-10.el6.x86_64 ---> Package libreport-compat.x86_64 0:2.0.9-21.el6.centos will be installed ---> Package lzo.x86_64 0:2.03-3.1.el6_5.1 will be installed ---> Package mesa-dri-filesystem.x86_64 0:10.1.2-2.el6 will be installed ---> Package mesa-dri1-drivers.x86_64 0:7.11-8.el6 will be installed ---> Package mesa-private-llvm.x86_64 0:3.4-3.el6 will be installed ---> Package p11-kit.x86_64 0:0.18.5-2.el6_5.2 will be installed ---> Package p11-kit-trust.x86_64 0:0.18.5-2.el6_5.2 will be installed ---> Package python-krbv.x86_64 0:1.0.13-2.el6.rf will be installed ---> Package python-sssdconfig.noarch 0:1.11.6-30.el6_6.4 will be installed ---> Package qpid-cpp-client.x86_64 0:0.12-6.el6 will be updated --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 ---> Package redhat-lsb-compat.x86_64 0:4.0-7.el6.centos will be installed ---> Package redhat-lsb-core.x86_64 0:4.0-7.el6.centos will be installed ---> Package samba-winbind.x86_64 0:3.6.23-14.el6_6 will be installed ---> Package shared-mime-info.x86_64 0:0.70-6.el6 will be installed ---> Package snappy.x86_64 0:1.1.0-1.el6 will be installed ---> Package sssd-ad.x86_64 0:1.11.6-30.el6_6.4 will be installed --> Processing Dependency: sssd-krb5-common = 1.11.6-30.el6_6.4 for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: libndr.so.0(NDR_0.0.1)(64bit) for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: libndr-nbt.so.0(NDR_NBT_0.0.1)(64bit) for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: libsss_krb5_common.so()(64bit) for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: libsss_idmap.so.0()(64bit) for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: libsamba-util.so.0()(64bit) for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: libndr.so.0()(64bit) for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 --> Processing Dependency: libndr-nbt.so.0()(64bit) for package: sssd-ad-1.11.6-30.el6_6.4.x86_64 ---> Package sssd-common.x86_64 0:1.11.6-30.el6_6.4 will be installed ---> Package sssd-common-pac.x86_64 0:1.11.6-30.el6_6.4 will be installed ---> Package sssd-ipa.x86_64 0:1.11.6-30.el6_6.4 will be installed ---> Package sssd-krb5.x86_64 0:1.11.6-30.el6_6.4 will be installed ---> Package sssd-ldap.x86_64 0:1.11.6-30.el6_6.4 will be installed ---> Package sssd-proxy.x86_64 0:1.11.6-30.el6_6.4 will be installed --> Running transaction check ---> Package libmnl.x86_64 0:1.0.2-3.el6 will be installed ---> Package libproxy-bin.x86_64 0:0.3.0-10.el6 will be installed ---> Package libproxy-python.x86_64 0:0.3.0-10.el6 will be installed ---> Package libsss_idmap.x86_64 0:1.11.6-30.el6_6.4 will be installed ---> Package qpid-cpp-client.x86_64 0:0.12-6.el6 will be updated --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 ---> Package samba4-libs.x86_64 0:4.0.0-66.el6_6.rc4 will be installed --> Processing Dependency: libpytalloc-util.so.2(PYTALLOC_UTIL_2.0.6)(64bit) for package: samba4-libs-4.0.0-66.el6_6.rc4.x86_64 --> Processing Dependency: libpytalloc-util.so.2()(64bit) for package: samba4-libs-4.0.0-66.el6_6.rc4.x86_64 ---> Package sssd-krb5-common.x86_64 0:1.11.6-30.el6_6.4 will be installed --> Running transaction check ---> Package pytalloc.x86_64 0:2.0.7-2.el6 will be installed ---> Package qpid-cpp-client.x86_64 0:0.12-6.el6 will be updated --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidclient.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-agent-lib-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-network-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-sysconfig-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-service-0.4.4-11.el6.x86_64 --> Processing Dependency: libqpidcommon.so.5()(64bit) for package: matahari-host-0.4.4-11.el6.x86_64 --> Finished Dependency Resolution Error: Package: matahari-host-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidclient.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidclient.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-service-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidcommon.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidcommon.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-agent-lib-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidclient.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidclient.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-network-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidcommon.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidcommon.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-host-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidcommon.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidcommon.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-sysconfig-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidclient.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidclient.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-sysconfig-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidcommon.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidcommon.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-service-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidclient.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidclient.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-agent-lib-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidcommon.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidcommon.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-network-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidclient.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidclient.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found You could try using --skip-broken to work around the problem ** Found 1 pre-existing rpmdb problem(s), 'yum check' output follows: frontpage-2002-SR1.2.i386 has missing requires of libexpat.so.00 -
Hello :) It looks like you are using the third-party RPMForge repo file with YUM. Do you require this repo for any specific package, or was it configured for a specific purpose? It's not required, and I notice it's likely the source of some of the missing package error messages you reported. Thank you. 0 -
Hi Michael, i have no idea why those repos are there or if i even need them. I guess it's better to leave them alone just in case i need them? Or they are broken anyway? Thanks. 0 -
You could remove the "matahari" packages via YUM if it's not an application that you utilize (It's not included with cPanel). This should correct the YUM repo errors. Thank you. 0 -
Ok removed the matahari thingy and yum completed successfully. Thanks so much! 0 -
I'm happy to see YUM updated successfully. Thank you for updating us with the outcome. 0
Please sign in to leave a comment.
Comments
11 comments