Changeset 5 for palm/trunk
- Timestamp:
- Feb 14, 2007 1:53:31 AM (18 years ago)
- Location:
- palm/trunk
- Files:
-
- 38 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mbuild_new
r1 r5 1 1 #!/bin/ksh 2 # mbuild - Programmuebersetzungsscript Version: @(#)MBUILD 1.0 07/02/072 # mbuild - Programmuebersetzungsscript Version: @(#)MBUILD 1.0 10/02/07 3 3 4 4 # Prozedur zur Uebersetzung von Programmteilen mittels make-Mechanismus … … 78 78 # 24/11/06 - Siggi - breva and levanto admitted 79 79 # 07/02/07 - Siggi - adapted for RIAM (neck) 80 # 10/02/07 - Siggi - all hpmuk-related code removed 80 81 81 82 … … 152 153 (berte) local_host=t3eb;; 153 154 (bora|breva|gregale|irifi|levanto|maestro|orkan|ostria|quanero|scirocco) local_host=lcmuk;; 154 (argestes|caurus|caver|chinook|dschani|gharra|nevados|poniente|samun|twister|yalka) local_host=hpmuk;;155 155 (gate) local_host=neck;; 156 156 (gfdl3.yonsei.ac.kr) local_host=decalpha; local_addres=165.132.26.56;; … … 206 206 207 207 208 # LOKALEN QUELLTEXTPFAD ERMITTELN. 209 # ZUERST PRUEFEN, OB EIN GLOBALER QUELLTEXTPFAD FUER ALLE RECHNER 210 # VEREINBART WURDE. 211 # DAZU ZUNAECHST ALLE IN DER KONFIGURATIONSDATEI VEREINBARTEN GLOBALEN 212 # VARIABLEN SETZEN, WEIL DIESE EVTL. IN PFADNAMEN VERWENDET WERDEN 213 line="" 214 grep "%" $config_file | while read line 215 do 216 if [[ "$line" != "" && "$(echo $line | cut -d" " -s -f3)" = "" ]] 217 then 218 var=`echo $line | cut -d" " -s -f1 | cut -c2-` 219 value=`echo $line | cut -d" " -s -f2` 220 echo "*** export $var=$value" 221 eval export $var=$value 222 eval echo \" $var=\$$var \" 223 fi 224 done 225 226 # NUN PRUEFEN, OB EIN GLOBALER QUELLTEXTPFAD VEREINBART WURDE 227 line="" 228 grep "%source_path" $config_file | while read line 229 do 230 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]] 231 then 232 if [[ "$(echo $line | cut -d" " -s -f3)" = "" ]] 233 then 234 global_source_path=`echo $line | cut -d" " -s -f2` 235 fi 236 fi 237 done 238 239 line="" 240 grep " $local_host" $config_file | grep "%source_path" | while read line 241 do 242 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]] 243 then 244 local_source_path=`echo $line | cut -d" " -s -f2` 245 fi 246 done 247 248 if [[ "$local_source_path" = "" ]] 249 then 250 if [[ "$global_source_path" != "" ]] 251 then 252 local_source_path=$global_source_path 253 else 254 printf "\n +++ no source path found in configuration file" 255 printf "\n for local host \"$local_host\" " 256 printf "\n please set \"\%source_path\" in configuration file" 257 locat=config_file; exit 258 fi 259 fi 260 eval local_source_path=$local_source_path 261 262 263 # EBENSO PFAD FUER DAS MAKE-DEPOSITORY ERMITTELN 264 line="" 265 grep "%depository_path" $config_file | while read line 266 do 267 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]] 268 then 269 if [[ "$(echo $line | cut -d" " -s -f3)" = "" ]] 270 then 271 global_depository_path=`echo $line | cut -d" " -s -f2` 272 fi 273 fi 274 done 275 276 line="" 277 grep " $local_host" $config_file | grep "%depository_path" | while read line 278 do 279 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]] 280 then 281 local_depository_path=`echo $line | cut -d" " -s -f2` 282 fi 283 done 284 285 if [[ "$local_depository_path" = "" ]] 286 then 287 if [[ "$global_depository_path" != "" ]] 288 then 289 local_depository_path=$global_depository_path 290 else 291 printf "\n +++ no depository path found in configuration file" 292 printf "\n for local host \"$local_host\" " 293 printf "\n please set \"\%depository_path\" in configuration file" 294 locat=config_file; exit 295 fi 296 fi 297 eval local_depository_path=$local_depository_path 298 299 300 208 301 # PRUEFEN, OB IN KONFIGURATIONSDATEI EIN HAUPTPROGRAMM 209 302 # VEREINBART WURDE … … 222 315 mainprog=`echo $line | cut -d" " -s -f2 | cut -d"." -f1` 223 316 fi 224 225 226 227 # LOKALEN QUELLTEXTPFAD ERMITTELN.228 # ZUERST PRUEFEN, OB EIN GLOBALER QUELLTEXTPFAD FUER ALLE RECHNER229 # VEREINBART WURDE230 line=""231 grep "%source_path" $config_file | while read line232 do233 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]]234 then235 if [[ "$(echo $line | cut -d" " -s -f3)" = "" ]]236 then237 global_source_path=`echo $line | cut -d" " -s -f2`238 fi239 fi240 done241 242 line=""243 grep " $local_host" $config_file | grep "%source_path" | while read line244 do245 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]]246 then247 local_source_path=`echo $line | cut -d" " -s -f2`248 fi249 done250 251 if [[ "$local_source_path" = "" ]]252 then253 if [[ "$global_source_path" != "" ]]254 then255 local_source_path=$global_source_path256 else257 printf "\n +++ no source path found in configuration file"258 printf "\n for local host \"$local_host\" "259 printf "\n please set \"\%source_path\" in configuration file"260 locat=config_file; exit261 fi262 fi263 eval local_source_path=$local_source_path264 265 266 # EBENSO PFAD FUER DAS MAKE-DEPOSITORY ERMITTELN267 line=""268 grep "%depository_path" $config_file | while read line269 do270 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]]271 then272 if [[ "$(echo $line | cut -d" " -s -f3)" = "" ]]273 then274 global_depository_path=`echo $line | cut -d" " -s -f2`275 fi276 fi277 done278 279 line=""280 grep " $local_host" $config_file | grep "%depository_path" | while read line281 do282 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" ]]283 then284 local_depository_path=`echo $line | cut -d" " -s -f2`285 fi286 done287 288 if [[ "$local_depository_path" = "" ]]289 then290 if [[ "$global_depository_path" != "" ]]291 then292 local_depository_path=$global_depository_path293 else294 printf "\n +++ no depository path found in configuration file"295 printf "\n for local host \"$local_host\" "296 printf "\n please set \"\%depository_path\" in configuration file"297 locat=config_file; exit298 fi299 fi300 eval local_depository_path=$local_depository_path301 317 302 318 … … 655 671 netcdf_support=false 656 672 case $remote_host in 657 (hpmuk) remote_addres=130.75.105.19;;658 673 (lcmuk) remote_addres=130.75.105.3; cpp_options="" 659 674 netcdf_support=true … … 998 1013 # BATCH-JOB PARAMETER SETZEN 999 1014 case $remote_host in 1000 (hpmuk) remote_addres=130.75.105.19;;1001 1015 (t3eb) queue=berte; memory=60; cputime=1000; xoption="-X 0";; 1002 1016 (t3eh) queue=comp_t3e; memory=60; cputime=360;; 1003 1017 (t3ej2) queue=normal; memory=60; cputime=1000; xoption="-X 0";; 1004 ( hpmuk|t3ej5|ground.yonsei.ac.kr) printf "\n --- remote host \"$remote_host\" does not allow batch jobs"; continue;;1018 (t3ej5|ground.yonsei.ac.kr) printf "\n --- remote host \"$remote_host\" does not allow batch jobs"; continue;; 1005 1019 esac 1006 1020 -
palm/trunk/SCRIPTS/mrun_new
r1 r5 3 3 ##!/home/DSRC/NC/tatuyama/pub/ksh NEEDED ON NEC AT RIAM !!!!!!!!!! 4 4 5 # mrun - Plot-Shellskript Version: @(#)MRUN 1.8 07/02/075 # mrun - Plot-Shellskript Version: @(#)MRUN 1.8 10/02/07 6 6 7 7 # Prozedur zum Starten von Modellaeufen … … 103 103 # sampled in SOURCES_FOR_RUN_$fname which is a 104 104 # subdirectory of the current working directory, 105 # -s TEST changed to -s CHANGED_FILES or -s CF,105 # -s TEST changed to -s WRITE_PERMIT or -s WP, 106 106 # adapted for RIAM (neck) 107 # bugfix for cycle number of output file (extout) 108 # all hpmuk-related code removed 107 109 108 110 … … 125 127 cond2="" 126 128 config_file=.mrun.config 127 continuation_run=false128 129 cpp_opts="" 129 130 cpumax=0 … … 174 175 queue=none 175 176 read_from_config="" 177 restart_run=false 176 178 return_addres=$(nslookup `hostname` 2>&1 | grep "Address:" | tail -1 | awk '{print $2}') 177 179 if [[ $return_addres = 130.75.105.158 ]] … … 314 316 (bora|breva|elephanta|gallego|gregale|hababai|irifi|levanto|maestro|orkan|ostria|poniente|quanero|scirocco|vorias) mrun_path=/home/raasch/pub 315 317 localhost=lcmuk;; 316 (caurus|caver|gharra|samun|twister|viracao|yalka) mrun_path=/home/raasch/pub/317 localhost=hpmuk;;318 318 (breg*-en0|berni*-en0) mrun_path=/home/b/niksiraa/pub 319 319 localhost=ibmb; archive_system=tivoli;; … … 357 357 (B) delete_temporary_catalog=false; mc="$mc -B";; 358 358 (c) config_file=$OPTARG; mc="$mc -c$OPTARG";; 359 (C) continuation_run=true; mc="$mc -C";;359 (C) restart_run=true; mc="$mc -C";; 360 360 (d) fname=$OPTARG; mc="$mc -d$OPTARG";; 361 361 (D) cpp_opts="$cpp_opts $OPTARG"; mc="$mc -D$OPTARG";; … … 500 500 do_remote=true 501 501 case $host in 502 ( hpmuk|ibm|ibmb|ibmh|ibms|ibmy|nech|neck|lctit|unics) true;;502 (ibm|ibmb|ibmh|ibms|ibmy|nech|neck|lctit|unics) true;; 503 503 (*) printf "\n" 504 504 printf "\n +++ execution host \"$host\" not admitted for MRUN," … … 843 843 do_remote=true 844 844 case $host in 845 ( hpmuk|ibm|ibmb|ibmh|ibms|ibmy|lctit|nech|neck|unics) true;;845 (ibm|ibmb|ibmh|ibms|ibmy|lctit|nech|neck|unics) true;; 846 846 (*) printf "\n" 847 847 printf "\n +++ execution host \"$host\" not admitted for MRUN," … … 995 995 then 996 996 case $host in 997 (hpmuk) queue=hpmuk;;998 997 (ibmb) if [[ $node_usage = shared ]] 999 998 then … … 1297 1296 then 1298 1297 1299 [[ "$source_list" = CF ]] && source_list=CHANGED_FILES 1300 1301 if [[ "$source_list" = CHANGED_FILES || $continuation_run != true ]] 1298 [[ "$source_list" = LM ]] && source_list=LOCALLY_MODIFIED 1299 [[ "$source_list" = WP ]] && source_list=WRITE_PERMIT 1300 1301 if [[ $restart_run != true ]] 1302 1302 then 1303 1303 rm -rf SOURCES_FOR_RUN_$fname … … 1315 1315 # ALLE ERMITTELTEN DATEIEN WERDEN IM VERZEICHNIS SOURCES_FOR_RUN_... 1316 1316 # GESAMMELT 1317 if [[ "$source_list" = CHANGED_FILES]]1317 if [[ "$source_list" = WRITE_PERMIT ]] 1318 1318 then 1319 1319 1320 1320 source_list="" 1321 1322 # ZUERST DAS DURCH DIE KONFIGURATIONSDATEI FESTGELEGTE1323 # QUELLTEXTVERZEICHNIS DURCHSUCHEN1324 1321 cd $source_path 1325 1322 … … 1354 1351 1355 1352 1353 elif [[ "$source_list" = LOCALLY_MODIFIED ]] 1354 then 1355 1356 # MODIFIZIERTE DATEIEN DER SVN-ARBEITSKOPIE BESTIMMEN 1357 source_list="" 1358 cd $source_path 1359 1360 1361 # PRUEFEN, OB VERZEICHNIS UEBERHAUPT UNTER SVN-KONTROLLE STEHT 1362 if [[ ! -d .svn ]] 1363 then 1364 printf "\n\n +++ source directory" 1365 printf "\n \"$source_path\" " 1366 printf "\n is not under control of \"subversion\"." 1367 printf "\n Please do not use mrun-option \"-s LOCALLY MODIFIED\"\n" 1368 fi 1369 1370 1371 # ALLE MODIFIZIERTEN QUELLCODEDATEIEN AUFLISTEN 1372 Filenames="" 1373 svn status | while read line 1374 do 1375 firstc=`echo $line | cut -c1` 1376 if [[ $firstc = M || $firstc = "?" ]] 1377 then 1378 Name=`echo "$line" | cut -c8-` 1379 extension=`echo $Name | cut -d. -f2` 1380 if [[ "$extension" = f90 || "$extension" = F90 || "$extension" = f || "$extension" = F || "$extension" = c ]] 1381 then 1382 Filenames="$Filenames "$Name 1383 fi 1384 fi 1385 done 1386 1387 1388 # DATEIEN NACH SOURCES_FOR_RUN_... KOPIEREN 1389 for dateiname in $Filenames 1390 do 1391 cp $dateiname $working_directory/SOURCES_FOR_RUN_$fname 1392 source_list=$source_list"$dateiname " 1393 done 1394 1395 cd - > /dev/null 1396 1397 1356 1398 # MITTELS OPTION -s ANGEGEBENE DATEIEN NACH SOURCES_FOR_RUN_... KOPIEREN 1357 1399 # BEI AUTOMATISCHEN FORTSETZUNGSLAEUFEN SIND DORT SCHON ALLE DATEIEN 1358 1400 # VORHANDEN 1359 elif [[ "$source_list" != "" && $ continuation_run != true ]]1401 elif [[ "$source_list" != "" && $restart_run != true ]] 1360 1402 then 1361 1403 … … 1392 1434 # LISTE DER ZU UEBERSETZENDEN PROGRAMMTEILE MIT ENTHALTEN IST (WENN 1393 1435 # NICHT, WIRD ES DIESER LISTE HINZUGEFUEGT) 1394 if [[ $ continuation_run != true ]]1436 if [[ $restart_run != true ]] 1395 1437 then 1396 1438 … … 1412 1454 1413 1455 # DATEIEN AUS ZUSAETZLICHEM QUELLVERZEICHNIS HINZUFUEGEN 1414 if [[ $ continuation_run != true && "$add_source_path" != "" ]]1456 if [[ $restart_run != true && "$add_source_path" != "" ]] 1415 1457 then 1416 1458 … … 1482 1524 # ALLE UNTERPROGRAMME, DIE ZU VEREINBARTEN SOFTWAREPAKETEN GEHOEREN, 1483 1525 # DER LISTE DER ZU UEBERSETZENDEN DATEIEN HINZUFUEGEN 1484 if [[ $ continuation_run != true && -n $package_list ]]1526 if [[ $restart_run != true && -n $package_list ]] 1485 1527 then 1486 1528 … … 1522 1564 # MAKEFILE AUF VORHANDENSEIN PRUEFEN UND KOPIEREN 1523 1565 # BEI RESTART-LAEUFEN LIEGT ES SCHON IM VERZEICHNIS SOURCES_FOR_RUN... 1524 if [[ "$use_makefile" = true && "$ continuation_run" != true ]]1566 if [[ "$use_makefile" = true && "$restart_run" != true ]] 1525 1567 then 1526 1568 [[ "$makefile" = "" ]] && makefile=$source_path/Makefile … … 1663 1705 then 1664 1706 case $localhost in 1665 ( hpmuk|unics)compiler_name=f77;;1707 (unics) compiler_name=f77;; 1666 1708 (lcmuk) if [[ "$cond1" = parallel || "$cond2" = parallel ]] 1667 1709 then … … 1695 1737 case $localhost in 1696 1738 (decalpha|ibm|ibmb|ibmh|ibms|ibmy|unics) praeproc=cpp;; 1697 (hpmuk) praeproc=/usr/ccs/lbin/cpp;;1698 1739 esac 1699 1740 … … 2154 2195 cp $make_depository $TEMPDIR_COMPILE 2155 2196 cd $TEMPDIR_COMPILE 2156 tar -xf $make_depository > /dev/null 2197 tar -xf $make_depository > /dev/null 2>&1 2157 2198 cd - > /dev/null 2158 2199 fi … … 2229 2270 else 2230 2271 2231 # HPMUK EVTL. PRAEPROZESSOR LAUFEN LASSEN2232 if [[ $localhost = hpmuk ]]2233 then2234 (( i = 0 ))2235 new_source_list=""2236 for filename in $source_list2237 do2238 basename=`print $filename | cut -f1 -d"."`2239 extension=`print $filename | cut -f2 -d"."`2240 if [[ $extension = F && $localhost != hpmuk ]]2241 then2242 (( i = i + 1 ))2243 if (( i == 1 ))2244 then2245 printf "\n\n *** preprocessor-calls:\n$striche"2246 fi2247 printf "\n $praeproc $PPOPTS -P $filename > ${basename}.f 2> /dev/null"2248 $praeproc $PPOPTS -P $filename > ${basename}.f 2> /dev/null2249 new_source_list="$new_source_list "${basename}.f2250 elif [[ $extension = f90 ]]2251 then2252 (( i = i + 1 ))2253 if (( i == 1 ))2254 then2255 printf "\n\n *** preprocessor-calls:\n$striche"2256 fi2257 mv $filename ${basename}.F902258 printf "\n $praeproc $PPOPTS -C -P ${basename}.F90 > $filename 2> /dev/null"2259 $praeproc $PPOPTS -C -P ${basename}.F90 > $filename 2> /dev/null2260 new_source_list="$new_source_list "$filename2261 rm -f ${basename}.F902262 else2263 new_source_list="$new_source_list "$filename2264 fi2265 done2266 source_list="$new_source_list"2267 if (( i != 0 ))2268 then2269 printf "\n$striche\n *** preprocessor-calls finished\n"2270 fi2271 fi2272 2273 2272 2274 2273 # UEBERSETZUNG DER QUELLTEXT-DATEIEN UND DES HAUPTPROGRAMMS … … 2328 2327 printf " linker-options: $LOPTS \n" 2329 2328 printf " source code files: $source_list \n" 2330 if [[ $localhost = hpmuk ]] 2331 then 2332 if [[ $localhost_realname = caurus ]] 2333 then 2334 $compiler_name $C_PPOPTS $FOPTS $MODULE_OPTIONS $source_list $LOPTS 2335 else 2336 remsh caurus "export PATH=/opt/fortran90/bin:$PATH; cd `pwd`; $compiler_name $C_PPOPTS $FOPTS $MODULE_OPTIONS $source_list $LOPTS" 2337 fi 2338 else 2339 $compiler_name $C_PPOPTS $FOPTS $MODULE_OPTIONS $LOPTS $source_list 2340 fi 2329 2330 $compiler_name $C_PPOPTS $FOPTS $MODULE_OPTIONS $LOPTS $source_list 2331 2341 2332 fi 2342 2333 if [[ $? != 0 || "$compile_error" = true || "$module_compile_error" = true ]] … … 2683 2674 exit 2684 2675 fi 2685 if [[ $localhost = hpmuk ]] 2686 then 2687 echo "property sdir .,${source_path}, ${add_source_path}" > .dderc 2688 dde a.out 2689 elif [[ $localhost = decalpha ]] 2676 if [[ $localhost = decalpha ]] 2690 2677 then 2691 2678 dxladebug a.out … … 3546 3533 3547 3534 # KOPIEREN AUF EINPROZESSORMASCHINE 3548 if [[ "${extout[$i]}" != " " ]]3535 if [[ "${extout[$i]}" != " " && "${extout[$i]}" != "" ]] 3549 3536 then 3550 3537 printf "\n >>> OUTPUT: ${localout[$i]} to ${pathout[$i]}.${extout[$i]}\n" -
palm/trunk/SCRIPTS/subjob
r1 r5 1 1 #!/bin/ksh 2 # subjob - Plot-Shellskript Version: @(#)SUBJOB 1.0 28/11/062 # subjob - Plot-Shellskript Version: @(#)SUBJOB 1.0 13/02/07 3 3 4 4 # Prozedur zum automatischen Generieren von Batch-Jobs, die unter NQS … … 78 78 # 25/10/06 - Siggi - data_limit set to 1.76 GByte on hanni and berni 79 79 # 28/11/06 - Siggi - levanto admitted 80 # 13/02/07 - Siggi - hpmuk releated code removed 80 81 81 82 … … 141 142 case $local_host in 142 143 (atmos) local_addres=172.20.25.35; local_host=lcide;; 143 (bora) local_addres=130.75.105.103; local_host= hpmuk;;144 (bora) local_addres=130.75.105.103; local_host=lcmuk;; 144 145 (breg*-en0|berni*-en0) local_addres=130.73.230.10; local_host=ibmb;; 145 (breva) local_addres=130.75.105.98; local_host=hpmuk;;146 (caurus) local_addres=130.75.105.19; local_host=hpmuk;;147 (chinook) local_addres=130.75.105.100; local_host=hpmuk;;148 146 (cs*) local_addres=136.172.44.131; local_host=nech;; 149 (elephanta) local_addres=130.75.105.6; local_host= hpmuk;;147 (elephanta) local_addres=130.75.105.6; local_host=lcmuk;; 150 148 (gfdl5) local_addres=165.132.26.58; local_host=ibmy;; 151 149 (gfdl3.yonsei.ac.kr) local_addres=165.132.26.56; local_host=decalpha;; 152 (gregale) local_addres=130.75.105.109; local_host= hpmuk;;153 (hababai) local_addres=130.75.105.108; local_host= hpmuk;;150 (gregale) local_addres=130.75.105.109; local_host=lcmuk;; 151 (hababai) local_addres=130.75.105.108; local_host=lcmuk;; 154 152 (hreg*-en0|hanni*-en0) local_addres=130.75.4.10; local_host=ibmh;; 155 (irifi) local_addres=130.75.105.104; local_host= hpmuk;;156 (levanto) local_addres=130.75.105.45; local_host= hpmuk;;157 (maestro) local_addres=130.75.105.2; local_host= hpmuk;;153 (irifi) local_addres=130.75.105.104; local_host=lcmuk;; 154 (levanto) local_addres=130.75.105.45; local_host=lcmuk;; 155 (maestro) local_addres=130.75.105.2; local_host=lcmuk;; 158 156 (nobel*) local_addres=150.183.5.101; local_host=ibms;; 159 (orkan) local_addres=130.75.105.3; local_host= hpmuk;;160 (ostria) local_addres=130.75.105.106; local_host= hpmuk;;161 (quanero) local_addres=130.75.105.107; local_host= hpmuk;;157 (orkan) local_addres=130.75.105.3; local_host=lcmuk;; 158 (ostria) local_addres=130.75.105.106; local_host=lcmuk;; 159 (quanero) local_addres=130.75.105.107; local_host=lcmuk;; 162 160 (scirocco) local_addres=172.20.25.41; local_host=lcmuk;; 163 161 (sun1|sun2) local_addres=130.75.6.1; local_host=unics;; … … 218 216 printf "\n -f filetransfer protocol scp" 219 217 printf "\n -h execution host, available hosts: $remote_host" 220 printf "\n hpmuk, ibm, ibmb, ibmh, ibms, ibmy,"218 printf "\n ibm, ibmb, ibmh, ibms, ibmy, lcmuk," 221 219 printf "\n unics" 222 220 printf "\n -m memory demand per process in MByte ---" … … 282 280 else 283 281 case $remote_host in 284 (hpmuk) qsubmem=d; qsubtime=t; queue=hpmuk; remote_addres=130.75.105.19; submcom=/opt/nqs/bin/qsub;;285 282 (ibm) queue=p690_standard; remote_addres=134.76.99.81; submcom=/usr/lpp/LoadL/full/bin/llsubmit;; 286 283 (ibmb) queue=cpar; remote_addres=130.73.230.10; submcom=/usr/lpp/LoadL/full/bin/llsubmit;; … … 304 301 ndq=$no_default_queue 305 302 case $remote_host in 306 (hpmuk) case $ndq in307 (hpmuk) error=false;;308 (*) error=true;;309 esac;;310 303 (ibm) case $ndq in 311 304 (p690_express|p690_standard|p690_long) error=false;;
Note: See TracChangeset
for help on using the changeset viewer.