Changeset 37
- Timestamp:
- Jul 17, 2018, 9:43:10 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cleanup.php
r35 r37 724 724 if ( preg_match( "/scyld/", $limshost ) ) 725 725 $limshost = 'alamo.uthscsa.edu'; 726 else if ( preg_match( "/novalo/", $limshost ) ) 727 $limshost = 'uslims3.aucsolutions.com'; 726 728 else if ( ! preg_match( "/\./", $limshost ) ) 727 729 $limshost = $limshost . $org_domain; … … 883 885 if ( preg_match( "/scyld/", $limshost ) ) 884 886 $limshost = 'alamo.uthscsa.edu'; 887 else if ( preg_match( "/novalo/", $limshost ) ) 888 $limshost = 'uslims3.aucsolutions.com'; 885 889 else if ( ! preg_match( "/\./", $limshost ) ) 886 890 $limshost = $limshost . $org_domain; -
trunk/cluster_status.php
r36 r37 182 182 else 183 183 { 184 // $clusters = array( "alamo", "lonestar5", "comet", 185 // "stampede2", "jetstream", "jureca", "jacinto" ); 186 $clusters = array( "alamo", "lonestar5", "comet", 184 $clusters = array( "lonestar5", "comet", 187 185 "stampede2", "jetstream" ); 188 186 } -
trunk/save-jobstats.sh
r7 r37 9 9 fi 10 10 HOSTNAME=`uname -n` 11 if [ `echo ${HOSTNAME}|grep -c "novalo"` -ne 0 ]; then 12 HOSTNAME="uslims3.aucsolutions.com" 13 fi 11 14 echo "HOSTNAME=${HOSTNAME}" 12 15 -
trunk/update_notice.php
r35 r37 6 6 7 7 // 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"; 10 12 $s_cmd2 = exec( $s_cmd1 ); 11 13 $sysrev = $s_cmd2; 14 echo "s_cmd1=$s_cmd1\n"; 15 echo "sysrev=$sysrev\n"; 12 16 13 17 // Global variables
Note:
See TracChangeset
for help on using the changeset viewer.