Changeset 16675 for trunk/pstamp/scripts/pstamp_parser_run.pl
- Timestamp:
- Feb 26, 2008, 2:49:12 PM (18 years ago)
- Location:
- trunk/pstamp/scripts
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
pstamp_parser_run.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pstamp/scripts
-
Property svn:ignore
set to
Makefile.in
Makefile
-
Property svn:ignore
set to
-
trunk/pstamp/scripts/pstamp_parser_run.pl
r16591 r16675 19 19 my $request_id = $ARGV[0]; 20 20 21 # XXX: CONFIGURATION: get these from a configuration file22 my $inputWorkdir = "/export/data1/bills/pstamp/work/$request_id";23 my $outputDataStoreRoot = "/var/www/html/ds/dsroot";24 my $defaultOutputRoot = $outputDataStoreRoot;25 21 26 22 use IPC::Cmd 0.36 qw( can_run run ); … … 42 38 ); 43 39 40 my $ipprc = PS::IPP::Config->new(); # IPP Configuration 41 42 #my $outputDataStoreRoot = "/var/www/html/ds/dsroot"; 43 44 my $outputDataStoreRoot = metadataLookupStr($ipprc->{_ipprc}, 'PSTAMP_DATA_STORE_ROOT'); 45 exit ($PS_EXIT_CONFIG_ERROR) unless defined $outputDataStoreRoot; 46 my $defaultOutputRoot = $outputDataStoreRoot; 47 48 49 #my $inputWorkdir = "/export/data1/bills/pstamp/work/$request_id"; 50 51 my $inputWorkdir = metadataLookupStr($ipprc->{_ipprc}, 'PSTAMP_WORKDIR'); 52 exit ($PS_EXIT_CONFIG_ERROR) unless defined $inputWorkdir; 53 $inputWorkdir .= "/$request_id"; 54 44 55 my $missing_tools; 45 56
Note:
See TracChangeset
for help on using the changeset viewer.
