Kumaravel has asked for the wisdom of the Perl Monks concerning the following question:
I traced the code to where it sleeps. Its in IPC/Run.pm#!/usr/local/bin/perl -w use Data::Dumper; use Cvs; my $repository = "prod.nyc.com:/proj/ops/repository"; my $dir = "/tmp/"; my $cvs_obj = new Cvs ( $dir, cvsroot => $repository, "remote-shell" => 'rsh', "debug" => 1, ) or die $Cvs::ERROR; my $res = $cvs_obj->checkout("."); print Dumper($res); print "Successfully initialized cvs object for repository $repository +and checked out in $dir\n";
$nfound = select( $self->{ROUT} = $self->{RIN}, $self->{WOUT} = $self->{WIN}, $self->{EOUT} = $self->{EIN}, $timeout ) ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Cvs::checkout not working when run on cluster
by zentara (Cardinal) on Dec 26, 2005 at 11:58 UTC | |
by Kumaravel (Novice) on Dec 26, 2005 at 13:49 UTC | |
|
Re: Cvs::checkout not working when run on cluster
by Kumaravel (Novice) on Dec 26, 2005 at 14:01 UTC | |
|
Re: Cvs::checkout not working when run on cluster
by zentara (Cardinal) on Dec 26, 2005 at 16:44 UTC | |
|
Re: Cvs::checkout not working when run on cluster
by ph713 (Pilgrim) on Dec 27, 2005 at 14:18 UTC |