- Timestamp:
- Mar 21, 2016, 1:23:44 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cleanup.php
r17 r18 413 413 file_put_contents( "$output_dir/$fn", $xml ); // Copy to submit dir 414 414 415 $file_type = "jobstats"; 415 416 } 416 417 -
trunk/cleanup_adev.php
r10 r18 8 8 */ 9 9 10 $us3bin = exec( "ls -d ~us3/ bin" );10 $us3bin = exec( "ls -d ~us3/lims/bin" ); 11 11 include_once "$us3bin/listen-config.php"; 12 12 include $class_dir_d . "experiment_status.php"; -
trunk/cleanup_aira.php
r10 r18 8 8 */ 9 9 10 $us3bin = exec( "ls -d ~us3/ bin" );10 $us3bin = exec( "ls -d ~us3/lims/bin" ); 11 11 include_once "$us3bin/listen-config.php"; 12 12 include $class_dir_p . "experiment_status.php"; -
trunk/cleanup_gfac.php
r7 r18 7 7 */ 8 8 9 $us3bin = exec( "ls -d ~us3/ bin" );9 $us3bin = exec( "ls -d ~us3/lims/bin" ); 10 10 include_once "$us3bin/listen-config.php"; 11 11 $me = 'cleanup_gfac.php'; -
trunk/cluster_status.php
r17 r18 165 165 global $data; 166 166 167 // $clusters = array( "alamo", "lonestar", "lonestar5", "stampede", 168 // "comet", "gordon" ); 169 $clusters = array( "alamo", "lonestar", "lonestar5", "stampede", 167 $clusters = array( "alamo", "lonestar5", "stampede", 170 168 "comet", "gordon", "jureca", "jacinto" ); 171 169 foreach ( $clusters as $clname ) -
trunk/gridctl.php
r17 r18 8 8 9 9 //global $self; 10 global $status_ex, $status_gw; 10 11 11 12 // Produce some output temporarily, so cron will send me message … … 679 680 global $loghdr; 680 681 global $cluster; 682 global $status_ex, $status_gw; 681 683 682 684 if ( is_aira_job( $gfacID ) ) … … 686 688 if ( $status_ex == 'EXECUTING' ) 687 689 { 688 if ( $ gfac_status== 'SUBMITTED' )690 if ( $status_gw == 'SUBMITTED' ) 689 691 $status_ex = 'QUEUED'; 690 if ( $ gfac_status== 'RUNNING' )692 if ( $status_gw == 'RUNNING' ) 691 693 $status_ex = 'ACTIVE'; 692 694 } -
trunk/gridctl_dev.php
r10 r18 1 1 <?php 2 2 3 $us3bin = exec( "ls -d ~us3/ bin" );3 $us3bin = exec( "ls -d ~us3/lims/bin" ); 4 4 include_once "$us3bin/listen-config.php"; 5 5 -
trunk/gridctl_pro.php
r10 r18 1 1 <?php 2 2 3 $us3bin = exec( "ls -d ~us3/ bin" );3 $us3bin = exec( "ls -d ~us3/lims/bin" ); 4 4 include_once "$us3bin/listen-config.php"; 5 5 -
trunk/listen.php
r9 r18 1 1 <?php 2 2 3 $us3bin = exec( "ls -d ~us3/ bin" );3 $us3bin = exec( "ls -d ~us3/lims/bin" ); 4 4 include "$us3bin/listen-config.php"; 5 5 … … 18 18 $php = "/usr/bin/php"; 19 19 20 $cmd = "/usr/bin/nohup $php $home/ bin/manage-us3-pipe.php >>$home/etc/manage.log 2>&1 </dev/null &";20 $cmd = "/usr/bin/nohup $php $home/lims/bin/manage-us3-pipe.php >>$home/lims/etc/manage.log 2>&1 </dev/null &"; 21 21 22 22 exec( $cmd ); -
trunk/manage-us3-pipe.php
r10 r18 1 1 <?php 2 2 3 $us3bin = exec( "ls -d ~us3/ bin" );3 $us3bin = exec( "ls -d ~us3/lims/bin" ); 4 4 include "$us3bin/listen-config.php"; 5 5 include "/srv/www/htdocs/common/class/experiment_status.php"; -
trunk/update_notice.php
r7 r18 1 1 <?php 2 2 3 $us3bin = exec( "ls -d ~us3/ bin" );4 $us3etc = exec( "ls -d ~us3/ etc" );3 $us3bin = exec( "ls -d ~us3/lims/bin" ); 4 $us3etc = exec( "ls -d ~us3/lims/etc" ); 5 5 include_once "$us3bin/listen-config.php"; 6 6 … … 122 122 { 123 123 $key = $type . $rev; 124 $msgf = $notices[ $key ][ 'msg' ];125 124 126 125 if ( in_array( $key, $keys ) ) 127 126 { // Entry is in both file and DB 127 $msgf = $notices[ $key ][ 'msg' ]; 128 128 $notices[ $key ][ 'id' ] = $id; 129 129 $notices[ $key ][ 'type' ] = $type; -
trunk/us3-notice.php
r7 r18 1 $us3bin = exec( "ls -d ~us3/ bin" );1 $us3bin = exec( "ls -d ~us3/lims/bin" ); 2 2 include_once "$us3bin/listen-config.php"; 3 3 include "$us3bin/cleanup_aira.php";
Note:
See TracChangeset
for help on using the changeset viewer.