Changeset 43052 for branches/eam_branches/ipp-pstamp-20260421/pstamp/scripts/pstamp_insert_request.pl
- Timestamp:
- Jun 12, 2026, 2:47:49 PM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-pstamp-20260421/pstamp/scripts/pstamp_insert_request.pl
r42981 r43052 33 33 if( !defined($tmp_req_file) or !defined($workdir) or !defined ($dbname) 34 34 or !defined($dbserver)); 35 use IPC::Cmd 0.36 qw( can_run run);35 use IPC::Cmd 0.36 qw( can_run ); 36 36 37 use PS::IPP::Config qw( :standard );37 use PS::IPP::Config qw( :standard ps_run ); 38 38 39 39 use Cwd; … … 60 60 my $command = "$fhead -x 0 $tmp_req_file"; 61 61 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 62 run(command => $command, verbose => $verbose);62 ps_run(command => $command, verbose => $verbose); 63 63 unless ($success) { 64 64 print STDERR @$stderr_buf; … … 147 147 $command .= " -label WEB.UP"; 148 148 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 149 run(command => $command, verbose => $verbose);149 ps_run(command => $command, verbose => $verbose); 150 150 unless ($success) { 151 151 my $errbuf = join "", @$stderr_buf; … … 172 172 $command .= " -dbserver $dbserver" if $dbserver; 173 173 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 174 run(command => $command, verbose => $verbose);174 ps_run(command => $command, verbose => $verbose); 175 175 unless ($success) { 176 176 my $status = $error_code >> 8;
Note:
See TracChangeset
for help on using the changeset viewer.
