Changeset 387408bfc5a9f0a310f6797876b4c24213b862f4 for fedkit
- Timestamp:
- 05/18/08 12:49:50 (4 years ago)
- Children:
- ad5639c6bf5190c89314874d131d0ab87bce0078
- Parents:
- f3691ff3ae25d3b83c09aa21905fb9320e79cad2
- git-committer:
- Ted Faber <faber@isi.edu> / 2008-05-18T19:49:50Z+0000
- Files:
-
- 1 modified
-
fedkit/splitter.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fedkit/splitter.pl
rf3691ff r387408b 572 572 chomp; 573 573 574 my $tb = $_; # Current testbed 574 my $tb; # Current testbed 575 my @nodes; # Current testbed node requests 576 577 /([^|]+)\|?(.*)/ && do { 578 my $n; 579 580 ($tb , $n) = ($1, $2); 581 @nodes = split(/\|/, $n); 582 }; 583 575 584 # If this testbed has not had its access parameters read from fedd, try 576 585 # to read them, if we have a way to talk to fedd … … 585 594 my $cmd = "$fedd_client -t " . 586 595 $tbparams->{$tb}->{'uri'} . " -T $ENV{HOME}/cacert.pem ". 587 "-l $tb $proj | /usr/bin/tee fedd.$tb "; 596 "-l $tb $proj" . (@nodes ? " -n " : " ") . 597 join(" -n ", @nodes) . "| /usr/bin/tee fedd.$tb "; 588 598 print "$cmd\n" if $verbose; 589 599
