Sponsored Content
Full Discussion: Unable to perform yum update
Operating Systems Linux Red Hat Unable to perform yum update Post 302946486 by sea on Tuesday 9th of June 2015 04:51:47 PM
Old 06-09-2015
Everything is EL - as supposed..
But how did that Fedora (Core 6 -- VERY VERY EOL -> F22 is out now) package come into that list?

Did you manualy modify one of your repos?
 

10 More Discussions You Might Find Interesting

1. Linux

update packages with yum

Hello Is there a way to update a package to a specific version with yum? So, I have version 1 of package A installed. Versions 2 and 3 are available, but I only want to upgrade to version 2. Any assistance would be appreciated. Thanks! (1 Reply)
Discussion started by: garskoci
1 Replies

2. Red Hat

Yum Update

I am using Cent OS 5 i need to update proxy server address in yum, i don't know where to update and how exactly i need to specify the proxy address can anyone help me in the issue. (2 Replies)
Discussion started by: praneel2k
2 Replies

3. UNIX for Dummies Questions & Answers

Centos commands: Yum Upgrade versus Yum update

Hi, I would like to know the difference between YUM UPDATE and YUM UPGRADE. The man pages say upgrade is same as update with the obsolete option. And by default it says the obsolete option is turned on, which would make them equivalent. Does not say what obsolete does. Can someone please... (3 Replies)
Discussion started by: mojoman
3 Replies

4. Linux

Yum update/install script

Any one know of a way to do a yum -install and draw the argument of what to install from a text file? I have a huge list of rpms that I have to install on a bunch of machines and I would like to run one script that goes to each machine and installs all rpms in the list I have. (2 Replies)
Discussion started by: rd42
2 Replies

5. Red Hat

Yum Update and Kernels

I have a server running CentOS 5 and when yum update is run and a new kernel is installed and there are more then 3 kernels installed the oldest ones are removed. Anyway to achieve this with CentOS 4? Matt (1 Reply)
Discussion started by: lforum
1 Replies

6. Shell Programming and Scripting

Yum update using expect

Hi, I have an expect script which connects to whatever Ip is passed to it. It performs a variety of tasks, all of which it completes fine except for the yum updates. For some reason it sends commands early, during the yum update. Any ideas? Thanks. (2 Replies)
Discussion started by: meor
2 Replies

7. Red Hat

Specify version in yum update

Hello All, I am trying to upgrade redhat from 5.6 to 5.8. When i use Code: yum update -y it installs 5.9 I dont want 5.9, instead i would like to upgrade to 5.8 is there anyway to specify a version when you are doing Code: yum update (4 Replies)
Discussion started by: adam25ca
4 Replies

8. Solaris

Unable to perform IPMP

Hi, I have perform IPMP on server. but its showing following errors, root@DEVTEST10 # dladm show-dev ce0 link: up speed: 100 Mbps duplex: full ce1 link: up speed: 100 Mbps duplex: full root@DEVTEST10 # root@DEVTEST10 # ifconfig -a lo0: flags=2001000849 mtu 8232 index 1 inet 127.0.0.1... (0 Replies)
Discussion started by: tiger09
0 Replies

9. Fedora

Yum update error

Hello, I issued # yum update and received below error. Any idea? # yum update Loaded plugins: fastestmirror, universal-hooks Setting up Update Process Loading mirror speeds from cached hostfile * cpanel-addons-production-feed: 204.10.37.146 * base: mirrors.oit.uci.edu * extras:... (3 Replies)
Discussion started by: feroccimx
3 Replies

10. UNIX for Beginners Questions & Answers

Installation of virt-manager while yum update and yum install rhvm does not work

I have downloaded RHEV-H 4.2 Red Hat Virtualization - Red Hat Customer Portal (RHVirtualization 4.2 Host and Manager iso). I uploaded the image and installed on an HP G9 server baremetal. I found I dont have a WAN/net connectivity later on HPG9 server. How can I still install virt-manager on... (1 Reply)
Discussion started by: Paras Pandey
1 Replies
native::Repos(3)					User Contributed Perl Documentation					  native::Repos(3)

NAME
SVN::Repos - Subversion repository functions SYNOPSIS
use SVN::Core; use SVN::Repos; use SVN::Fs; my $repos = SVN::Repos::open('/path/to/repos'); print $repos->fs()->youngest_rev; DESCRIPTION
SVN::Repos wraps the object-oriented "svn_repos_t" functions, providing access to a Subversion repository on the local filesystem. CONSTRUCTORS SVN::Repos::open($path) This function opens an existing repository, and returns an "SVN::Repos" object. create($path, undef, undef, $config, $fs_config) This function creates a new repository, and returns an "SVN::Repos" object. METHODS $repos->dump_fs($dump_fh, $feedback_fh, $start_rev, $end_rev, $incremental, $cancel_func, $cancel_baton) $repos->dump_fs2($dump_fh, $feedback_fh, $start_rev, $end_rev, $incremental, $deltify, $cancel_func, $cancel_baton) Create a dump file of the repository from revision $start_rev to $end_rev , store it into the filehandle $dump_fh, and write feedback on the progress of the operation to filehandle $feedback_fh. If $incremental is TRUE, the first revision dumped will be a diff against the previous revision (usually it looks like a full dump of the tree). If $use_deltas is TRUE, output only node properties which have changed relative to the previous contents, and output text contents as svndiff data against the previous contents. Regardless of how this flag is set, the first revision of a non-incremental dump will be done with full plain text. A dump with @a use_deltas set cannot be loaded by Subversion 1.0.x. According to svn_repos.h, the $cancel_func is a function that is called periodically and given $cancel_baton as a parameter to determine whether the client wishes to cancel the dump. You must supply "undef" at the very least. Example: use SVN::Core; use SVN::Repos; my $repos = SVN::Repos::open ('/repo/sandbox'); open my $fh, ">/tmp/tmp.dump" or die "Cannot open file: $! "; my $start_rev = 10; my $end_rev = 20; my $incremental = 1; my $deltify = 1; $repos->dump_fs2($fh, *STDOUT, # Dump file => $fh, Feedback => STDOUT $start_rev, $end_rev, # Revision Range $incremental, $deltify, # Options undef, undef); # Cancel Function close $fh; $repos->load_fs($dumpfile_fh, $feedback_fh, $uuid_action, $parent_dir, $cancel_func, $cancel_baton); $repos->load_fs2($dumpfile_fh, $feedback_fh, $uuid_action, $parent_dir, $use_pre_commit_hook, $use_post_commit_hook, $cancel_func, $cancel_baton); Loads a dumpfile specified by the $dumpfile_fh filehandle into the repository. If the dumpstream contains copy history that is unavailable in the repository, an error will be thrown. The repository's UUID will be updated iff the dumpstream contains a UUID and $uuid_action is not equal to $SVN::Repos::load_uuid_ignore and either the repository contains no revisions or $uuid_action is equal to $SVN::Repos::load_uuid_force. If the dumpstream contains no UUID, then $uuid_action is ignored and the repository UUID is not touched. If $parent_dir is not null, then the parser will reparent all the loaded nodes, from root to @a parent_dir. The directory $parent_dir must be an existing directory in the repository. If $use_pre_commit_hook is set, call the repository's pre-commit hook before committing each loaded revision. If $use_post_commit_hook is set, call the repository's post-commit hook after committing each loaded revision. If $cancel_func is not NULL, it is called periodically with $cancel_baton as argument to see if the client wishes to cancel the load. You must at least provide undef for these parameters for the method call to work. Example: use SVN::Core; use SVN::Repos; my $repos = SVN::Repos::open ('/repo/test_repo'); open my $fh, "/repo/sandbox.dump" or die "Cannot open file: $! "; my $parent_dir = '/'; my $use_pre_commit_hook = 0; my $use_post_commit_hook = 0; $repos->load_fs2($fh, *STDOUT, $SVN::Repos::load_uuid_ignore, # Ignore uuid $parent_dir, $use_pre_commit_hook, # Use pre-commit hook? $use_post_commit_hook, # Use post-commit hook? undef, undef); close $fh; $repos->fs() Returns the "SVN::Fs" object for this repository. $repos->get_logs([$path, ...], $start, $end, $discover_changed_paths, $strict_node_history, $receiver) Iterates over all the revisions that affect the list of paths passed as the first parameter, starting at $start, and ending at $end. $receiver is called for each change. The arguments to $receiver are: $self The "SVN::Repos" object. $paths "undef" if $discover_changed_paths is false. Otherwise, contains a hash of paths that have changed in this revision. $rev The revision this change occured in. $date The date and time the revision occured. $msg The log message associated with this revision. $pool An "SVN::Pool" object which may be used in the function. If $strict_node_history is true then copies will not be traversed. ADDITIONAL METHODS The following methods work, but are not currently documented in this file. Please consult the svn_repos.h section in the Subversion API for more details. $repos->get_commit_editor(...) $repos->get_commit_editor2(...) $repos->path(...) $repos->db_env(...) $repos->lock_dir(...) $repos->db_lockfile(...) $repos->hook_dir(...) $repos->start_commit_hook(...) $repos->pre_commit_hook(...) $repos->post_commit_hook(...) $repos->pre_revprop_change(...) $repos->post_revprop_change(...) $repos->dated_revision(...) $repos->fs_commit_txn(...) $repos->fs_being_txn_for_commit(...) $repos->fs_being_txn_for_update(...) $repos->fs_change_rev_prop(...) $repos->node_editor(...) $repos->dump_fs(...) $repos->load_fs(...) $repos->get_fs_build_parser(...) AUTHORS
Chia-liang Kao <clkao@clkao.org> COPYRIGHT
Copyright (c) 2003-2006 CollabNet. All rights reserved. This software is licensed as described in the file COPYING, which you should have received as part of this distribution. The terms are also available at http://subversion.tigris.org/license-1.html. If newer versions of this license are posted there, you may use a newer version instead, at your option. This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history and logs, available at http://subversion.tigris.org/. perl v5.10.0 2008-03-17 native::Repos(3)
All times are GMT -4. The time now is 08:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy