Changeset 37 for trunk


Ignore:
Timestamp:
Jul 17, 2018, 9:43:10 PM (6 years ago)
Author:
gegorbet
Message:

gridctl mods for mysqli and aucsolutions, plus new text for crontabs and cronic

Location:
trunk
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/cleanup.php

    r35 r37  
    724724      if ( preg_match( "/scyld/", $limshost ) )
    725725         $limshost    = 'alamo.uthscsa.edu';
     726      else if ( preg_match( "/novalo/", $limshost ) )
     727         $limshost    = 'uslims3.aucsolutions.com';
    726728      else if ( ! preg_match( "/\./", $limshost ) )
    727729         $limshost    = $limshost . $org_domain;
     
    883885      if ( preg_match( "/scyld/", $limshost ) )
    884886         $limshost    = 'alamo.uthscsa.edu';
     887      else if ( preg_match( "/novalo/", $limshost ) )
     888         $limshost    = 'uslims3.aucsolutions.com';
    885889      else if ( ! preg_match( "/\./", $limshost ) )
    886890         $limshost    = $limshost . $org_domain;
  • trunk/cluster_status.php

    r36 r37  
    182182   else
    183183   {
    184 //      $clusters = array( "alamo", "lonestar5", "comet",
    185 //                         "stampede2", "jetstream", "jureca", "jacinto" );
    186       $clusters = array( "alamo", "lonestar5", "comet",
     184      $clusters = array( "lonestar5", "comet",
    187185                         "stampede2", "jetstream" );
    188186   }
  • trunk/save-jobstats.sh

    r7 r37  
    99fi
    1010HOSTNAME=`uname -n`
     11if [ `echo ${HOSTNAME}|grep -c "novalo"` -ne 0 ]; then
     12  HOSTNAME="uslims3.aucsolutions.com"
     13fi
    1114echo "HOSTNAME=${HOSTNAME}"
    1215
  • trunk/update_notice.php

    r35 r37  
    66
    77// Get the US3 system release of latest file on download site
    8 $s_cmd1 = "ssh us3@ultrascan.uthscsa.edu 'ls -t /srv/www/htdocs/ultrascan3/software/us3*";
    9 $s_cmd1 = "$s_cmd1 | sed -n 1p | cut -d\- -f3" . "'";
     8//$s_cmd1 = "ssh us3@ultrascan.uthscsa.edu 'ls -t /srv/www/htdocs/ultrascan3/software/us3*";
     9//$s_cmd1 = "$s_cmd1 | sed -n 1p | cut -d\- -f3" . "'";
     10$s_cmd1 = 'ls -t /srv/www/htdocs/uscn/ultrascan3/software/us3*';
     11$s_cmd1 = "$s_cmd1 | sed -n 1p | cut -d\- -f3";
    1012$s_cmd2 = exec( $s_cmd1 );
    1113$sysrev = $s_cmd2;
     14  echo "s_cmd1=$s_cmd1\n";
     15  echo "sysrev=$sysrev\n";
    1216
    1317// Global variables
Note: See TracChangeset for help on using the changeset viewer.