Changeset 1687


Ignore:
Timestamp:
2000-11-22T11:14:39+13:00 (23 years ago)
Author:
jrm21
Message:

modified ulimit timeouts to 40sec from 20sec :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/gsConvert.pl

    r1684 r1687  
    323323    my $wvWare = &util::filename_cat($wv_home, "bin", "wvWare");
    324324    return 0 unless (-e "$wvWare");
    325     $cmd = "ulimit -t 20;";
     325    $cmd = "ulimit -t 40;";
    326326    $cmd .= "$wvWare --charset utf-8 --config $wv_conf";
    327327    $cmd .= " \"$input_filename\" > \"$output_filestem.html\" 2>\"$output_filestem.err\"";
     
    365365    $r_cmd = "rtf2html" unless (-e "$r_cmd");
    366366    return 0 unless (-e "$r_cmd");
    367     $cmd = "ulimit -t 20;";
     367    $cmd = "ulimit -t 40;";
    368368    $cmd .= "$r_cmd";
    369369    $cmd .= " \"$input_filename\" > \"$output_filestem.html\" 2>\"$output_filestem.err\"";
     
    403403    return 0 unless (-e "$pdftohtml");
    404404
    405     $cmd = "ulimit -t 20;";
     405    $cmd = "ulimit -t 40;";
    406406    $cmd .= "$pdftohtml -noframes";
    407407    $cmd .= " \"$input_filename\" \"$output_filestem.html\"";
Note: See TracChangeset for help on using the changeset viewer.