Skip to Content.
Sympa Menu

perfsonar-dev - Re: [pS-dev] perfsonar: r2432 - trunk/perfsonar-bundle

Subject: perfsonar development work

List archive

Re: [pS-dev] perfsonar: r2432 - trunk/perfsonar-bundle


Chronological Thread 
  • From: Loukik Kudarimoti <>
  • To:
  • Cc: "" <>
  • Subject: Re: [pS-dev] perfsonar: r2432 - trunk/perfsonar-bundle
  • Date: Mon, 28 May 2007 23:54:36 +0100


Hi Guilherme,

Sorry for having forgotten to mention about this...

The old tar command has some problems on solaris OS (because its gnu tar specific? Deflate and then untar was the best option..




wrote:
Hi Loukik,

Was the single tar -zxvf statement not working?

Guilherme


wrote:
Author: loukik
Date: 2007-05-25 10:46:29 -0400 (Fri, 25 May 2007)
New Revision: 2432

Modified:
trunk/perfsonar-bundle/install.pl
Log:
variable declarations were causing problems (I am very new to perl :) )

Modified: trunk/perfsonar-bundle/install.pl
===================================================================
--- trunk/perfsonar-bundle/install.pl 2007-05-25 13:11:07 UTC (rev 2431)
+++ trunk/perfsonar-bundle/install.pl 2007-05-25 14:46:29 UTC (rev 2432)
@@ -601,10 +601,10 @@
print "\nReturning to the last menu...\n";
return 1;
}
- @arr=split /\.gz/, $file;
- $file-unzipped = $arr[0];
+ my @arr=split /\.gz/, $file;
+ my $file_unzipped = $arr[0];
- if (system("tar -xvf $file-unzipped -C $installDir") != 0){
+ if (system("tar -xvf $file_unzipped -C $installDir") != 0){
print "\nAn error occurred while trying to extract the installions files.\n";
print "\nReturning to the last menu...\n";
return 1;



----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.



--

______________________________________________________________________


Loukik Kudarimoti

Network Engineer


DANTE - www.dante.net


Tel: +44 (0)1223 371 300

Fax: +44 (0)1223 371 371

Email:



City House, 126-130 Hills Road

Cambridge CB2 1PQ

UK

_____________________________________________________________________



  • Re: [pS-dev] perfsonar: r2432 - trunk/perfsonar-bundle, Loukik Kudarimoti, 05/28/2007

Archive powered by MHonArc 2.6.16.

Top of Page