IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 20, 2007, 3:26:45 PM (19 years ago)
Author:
Paul Price
Message:

Adding --no-op and --no-update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/ipp_serial_phase2.pl

    r11846 r11946  
    1414my ($dbname,                    # Database name to use
    1515    $workdir,                   # Working directory
     16    $no_op,                     # No operations?
     17    $no_update,                 # No updating?
    1618    );
    1719GetOptions(
    1820           'dbname|d=s' => \$dbname,
    1921           'workdir|w=s' => \$workdir,
     22           'no-op' => \$no_op,
     23           'no-update' => \$no_update,
    2024) or pod2usage( 2 );
    2125
     
    5155   
    5256    my $command = "$phase2 --exp_tag $exp_tag --class_id $class_id --uri $uri --dbname $dbname --camera $camera";
     57    $command .= " --no-op" if defined $no_op;
     58    $command .= " --no-update" if defined $no_update;
    5359    $command .= " --workdir $workdir" if defined $workdir;
    5460    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
Note: See TracChangeset for help on using the changeset viewer.