Changeset 5


Ignore:
Timestamp:
Feb 14, 2007 1:53:31 AM (17 years ago)
Author:
raasch
Message:

html-documentation added

Location:
palm/trunk
Files:
38 added
3 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mbuild_new

    r1 r5  
    11#!/bin/ksh
    2 # mbuild - Programmuebersetzungsscript   Version:  @(#)MBUILD 1.0    07/02/07
     2# mbuild - Programmuebersetzungsscript   Version:  @(#)MBUILD 1.0    10/02/07
    33
    44     # Prozedur zur Uebersetzung von Programmteilen mittels make-Mechanismus
     
    7878     # 24/11/06 - Siggi - breva and levanto admitted
    7979     # 07/02/07 - Siggi - adapted for RIAM (neck)
     80     # 10/02/07 - Siggi - all hpmuk-related code removed
    8081
    8182
     
    152153     (berte)                    local_host=t3eb;;
    153154     (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;;
    155155     (gate)                     local_host=neck;;
    156156     (gfdl3.yonsei.ac.kr)       local_host=decalpha; local_addres=165.132.26.56;;
     
    206206
    207207
     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
    208301    # PRUEFEN, OB IN KONFIGURATIONSDATEI EIN HAUPTPROGRAMM
    209302    # VEREINBART WURDE
     
    222315    mainprog=`echo $line | cut -d" " -s -f2 | cut -d"." -f1`
    223316 fi
    224 
    225 
    226 
    227     # LOKALEN QUELLTEXTPFAD ERMITTELN.
    228     # ZUERST PRUEFEN, OB EIN GLOBALER QUELLTEXTPFAD FUER ALLE RECHNER
    229     # VEREINBART WURDE
    230  line=""
    231  grep "%source_path" $config_file  |  while read line
    232  do
    233     if [[ "$line" != ""  &&  $(echo $line | cut -c1) != "#" ]]
    234     then
    235        if [[ "$(echo $line | cut -d" " -s -f3)" = "" ]]
    236        then
    237           global_source_path=`echo $line | cut -d" " -s -f2`
    238        fi
    239     fi
    240  done
    241 
    242  line=""
    243  grep  " $local_host" $config_file | grep "%source_path"  |  while read line
    244  do
    245     if [[ "$line" != ""  &&  $(echo $line | cut -c1) != "#" ]]
    246     then
    247        local_source_path=`echo $line | cut -d" " -s -f2`
    248     fi
    249  done
    250 
    251  if [[ "$local_source_path" = "" ]]
    252  then
    253     if [[ "$global_source_path" != "" ]]
    254     then
    255        local_source_path=$global_source_path
    256     else
    257        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; exit
    261     fi
    262  fi
    263  eval local_source_path=$local_source_path
    264 
    265 
    266      # EBENSO PFAD FUER DAS MAKE-DEPOSITORY ERMITTELN
    267  line=""
    268  grep "%depository_path" $config_file  |  while read line
    269  do
    270     if [[ "$line" != ""  &&  $(echo $line | cut -c1) != "#" ]]
    271     then
    272        if [[ "$(echo $line | cut -d" " -s -f3)" = "" ]]
    273        then
    274           global_depository_path=`echo $line | cut -d" " -s -f2`
    275        fi
    276     fi
    277  done
    278 
    279  line=""
    280  grep  " $local_host" $config_file | grep "%depository_path"  |  while read line
    281  do
    282     if [[ "$line" != ""  &&  $(echo $line | cut -c1) != "#" ]]
    283     then
    284        local_depository_path=`echo $line | cut -d" " -s -f2`
    285     fi
    286  done
    287 
    288  if [[ "$local_depository_path" = "" ]]
    289  then
    290     if [[ "$global_depository_path" != "" ]]
    291     then
    292        local_depository_path=$global_depository_path
    293     else
    294        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; exit
    298     fi
    299  fi
    300  eval local_depository_path=$local_depository_path
    301317
    302318
     
    655671    netcdf_support=false
    656672    case  $remote_host  in
    657         (hpmuk)          remote_addres=130.75.105.19;;
    658673        (lcmuk)          remote_addres=130.75.105.3; cpp_options=""
    659674                         netcdf_support=true
     
    9981013          # BATCH-JOB PARAMETER SETZEN
    9991014       case  $remote_host  in
    1000            (hpmuk)          remote_addres=130.75.105.19;;
    10011015           (t3eb)           queue=berte; memory=60; cputime=1000; xoption="-X 0";;
    10021016           (t3eh)           queue=comp_t3e; memory=60; cputime=360;;
    10031017           (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;;
    10051019       esac
    10061020
  • palm/trunk/SCRIPTS/mrun_new

    r1 r5  
    33##!/home/DSRC/NC/tatuyama/pub/ksh   NEEDED ON NEC AT RIAM !!!!!!!!!!
    44
    5 # mrun - Plot-Shellskript         Version:  @(#)MRUN 1.8   07/02/07
     5# mrun - Plot-Shellskript         Version:  @(#)MRUN 1.8   10/02/07
    66
    77     # Prozedur zum Starten von Modellaeufen
     
    103103     #                     sampled in SOURCES_FOR_RUN_$fname which is a
    104104     #                     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,
    106106     #                     adapted for RIAM (neck)
     107     #                     bugfix for cycle number of output file (extout)
     108     #                     all hpmuk-related code removed
    107109
    108110
     
    125127 cond2=""
    126128 config_file=.mrun.config
    127  continuation_run=false
    128129 cpp_opts=""
    129130 cpumax=0
     
    174175 queue=none
    175176 read_from_config=""
     177 restart_run=false
    176178 return_addres=$(nslookup `hostname` 2>&1 | grep "Address:" | tail -1 | awk '{print $2}')
    177179 if [[ $return_addres = 130.75.105.158 ]]
     
    314316     (bora|breva|elephanta|gallego|gregale|hababai|irifi|levanto|maestro|orkan|ostria|poniente|quanero|scirocco|vorias)  mrun_path=/home/raasch/pub
    315317                            localhost=lcmuk;;
    316      (caurus|caver|gharra|samun|twister|viracao|yalka)  mrun_path=/home/raasch/pub/
    317                                                          localhost=hpmuk;;
    318318     (breg*-en0|berni*-en0) mrun_path=/home/b/niksiraa/pub
    319319                            localhost=ibmb; archive_system=tivoli;;
     
    357357       (B)   delete_temporary_catalog=false; mc="$mc -B";;
    358358       (c)   config_file=$OPTARG; mc="$mc -c$OPTARG";;
    359        (C)   continuation_run=true; mc="$mc -C";;
     359       (C)   restart_run=true; mc="$mc -C";;
    360360       (d)   fname=$OPTARG; mc="$mc -d$OPTARG";;
    361361       (D)   cpp_opts="$cpp_opts $OPTARG"; mc="$mc -D$OPTARG";;
     
    500500    do_remote=true
    501501    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;;
    503503        (*)  printf "\n"
    504504             printf "\n  +++ execution host \"$host\" not admitted for MRUN,"
     
    843843    do_remote=true
    844844    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;;
    846846        (*)  printf "\n"
    847847             printf "\n  +++ execution host \"$host\" not admitted for MRUN,"
     
    995995 then
    996996    case  $host  in
    997         (hpmuk)      queue=hpmuk;;
    998997        (ibmb)       if [[ $node_usage = shared ]]
    999998                     then
     
    12971296 then
    12981297
    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 ]]
    13021302    then
    13031303       rm -rf  SOURCES_FOR_RUN_$fname
     
    13151315       # ALLE ERMITTELTEN DATEIEN WERDEN IM VERZEICHNIS SOURCES_FOR_RUN_...
    13161316       # GESAMMELT
    1317     if [[ "$source_list" = CHANGED_FILES ]]
     1317    if [[ "$source_list" = WRITE_PERMIT ]]
    13181318    then
    13191319
    13201320       source_list=""
    1321 
    1322           # ZUERST DAS DURCH DIE KONFIGURATIONSDATEI FESTGELEGTE
    1323           # QUELLTEXTVERZEICHNIS DURCHSUCHEN
    13241321       cd  $source_path
    13251322
     
    13541351
    13551352
     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
    13561398       # MITTELS OPTION -s ANGEGEBENE DATEIEN NACH SOURCES_FOR_RUN_... KOPIEREN
    13571399       # BEI AUTOMATISCHEN FORTSETZUNGSLAEUFEN SIND DORT SCHON ALLE DATEIEN
    13581400       # VORHANDEN
    1359     elif [[ "$source_list" != ""  &&  $continuation_run != true ]]
     1401    elif [[ "$source_list" != ""  &&  $restart_run != true ]]
    13601402    then
    13611403
     
    13921434       # LISTE DER ZU UEBERSETZENDEN PROGRAMMTEILE MIT ENTHALTEN IST (WENN
    13931435       # NICHT, WIRD ES DIESER LISTE HINZUGEFUEGT)
    1394     if [[ $continuation_run != true ]]
     1436    if [[ $restart_run != true ]]
    13951437    then
    13961438
     
    14121454
    14131455       # DATEIEN AUS ZUSAETZLICHEM QUELLVERZEICHNIS HINZUFUEGEN
    1414     if [[ $continuation_run != true  &&  "$add_source_path" != "" ]]
     1456    if [[ $restart_run != true  &&  "$add_source_path" != "" ]]
    14151457    then
    14161458
     
    14821524       # ALLE UNTERPROGRAMME, DIE ZU VEREINBARTEN SOFTWAREPAKETEN GEHOEREN,
    14831525       # DER LISTE DER ZU UEBERSETZENDEN DATEIEN HINZUFUEGEN
    1484     if [[ $continuation_run != true  &&  -n $package_list ]]
     1526    if [[ $restart_run != true  &&  -n $package_list ]]
    14851527    then
    14861528
     
    15221564       # MAKEFILE AUF VORHANDENSEIN PRUEFEN UND KOPIEREN
    15231565       # 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 ]]
    15251567    then
    15261568       [[ "$makefile" = "" ]]  &&  makefile=$source_path/Makefile
     
    16631705 then
    16641706    case  $localhost  in
    1665         (hpmuk|unics)                           compiler_name=f77;;
     1707        (unics)                                 compiler_name=f77;;
    16661708        (lcmuk)                                 if [[ "$cond1" = parallel  ||  "$cond2" = parallel ]]
    16671709                                                then
     
    16951737 case  $localhost  in
    16961738     (decalpha|ibm|ibmb|ibmh|ibms|ibmy|unics)  praeproc=cpp;;
    1697      (hpmuk)                                   praeproc=/usr/ccs/lbin/cpp;;
    16981739 esac
    16991740
     
    21542195             cp  $make_depository  $TEMPDIR_COMPILE
    21552196             cd  $TEMPDIR_COMPILE
    2156              tar -xf  $make_depository  >  /dev/null
     2197             tar -xf  $make_depository  >  /dev/null  2>&1
    21572198             cd -  > /dev/null
    21582199          fi
     
    22292270       else
    22302271
    2231              # HPMUK EVTL. PRAEPROZESSOR LAUFEN LASSEN
    2232           if [[ $localhost = hpmuk ]]
    2233           then
    2234              (( i = 0 ))
    2235              new_source_list=""
    2236              for  filename  in  $source_list
    2237              do
    2238                 basename=`print $filename | cut -f1 -d"."`
    2239                 extension=`print $filename | cut -f2 -d"."`
    2240                 if [[ $extension = F  &&  $localhost != hpmuk ]]
    2241                 then
    2242                    (( i = i + 1 ))
    2243                    if (( i == 1 ))
    2244                    then
    2245                       printf "\n\n  *** preprocessor-calls:\n$striche"
    2246                    fi
    2247                    printf "\n      $praeproc  $PPOPTS  -P  $filename  >  ${basename}.f  2> /dev/null"
    2248                    $praeproc  $PPOPTS  -P  $filename  >  ${basename}.f  2> /dev/null
    2249                    new_source_list="$new_source_list "${basename}.f
    2250                    elif [[ $extension = f90 ]]
    2251                 then
    2252                    (( i = i + 1 ))
    2253                    if (( i == 1 ))
    2254                    then
    2255                       printf "\n\n  *** preprocessor-calls:\n$striche"
    2256                    fi
    2257                    mv  $filename  ${basename}.F90
    2258                    printf "\n      $praeproc  $PPOPTS  -C  -P  ${basename}.F90  >  $filename  2> /dev/null"
    2259                    $praeproc  $PPOPTS  -C  -P  ${basename}.F90  >  $filename  2> /dev/null
    2260                    new_source_list="$new_source_list "$filename
    2261                    rm -f  ${basename}.F90
    2262                 else
    2263                    new_source_list="$new_source_list "$filename
    2264                 fi
    2265              done
    2266              source_list="$new_source_list"
    2267              if (( i != 0 ))
    2268              then
    2269                 printf "\n$striche\n  *** preprocessor-calls finished\n"
    2270              fi
    2271           fi
    2272 
    22732272
    22742273             # UEBERSETZUNG DER QUELLTEXT-DATEIEN UND DES HAUPTPROGRAMMS
     
    23282327          printf "      linker-options:                    $LOPTS \n"
    23292328          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
    23412332       fi
    23422333       if [[ $? != 0  ||  "$compile_error" = true  ||  "$module_compile_error" = true ]]
     
    26832674          exit
    26842675       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 ]]
    26902677       then
    26912678          dxladebug  a.out
     
    35463533
    35473534                # KOPIEREN AUF EINPROZESSORMASCHINE
    3548              if [[ "${extout[$i]}" != " " ]]
     3535             if [[ "${extout[$i]}" != " "  &&  "${extout[$i]}" != "" ]]
    35493536             then
    35503537                printf "\n  >>> OUTPUT: ${localout[$i]}  to  ${pathout[$i]}.${extout[$i]}\n"
  • palm/trunk/SCRIPTS/subjob

    r1 r5  
    11#!/bin/ksh
    2 # subjob - Plot-Shellskript         Version:  @(#)SUBJOB 1.0    28/11/06
     2# subjob - Plot-Shellskript         Version:  @(#)SUBJOB 1.0    13/02/07
    33
    44     # Prozedur zum automatischen Generieren von Batch-Jobs, die unter NQS
     
    7878     # 25/10/06 - Siggi - data_limit set to 1.76 GByte on hanni and berni
    7979     # 28/11/06 - Siggi - levanto admitted
     80     # 13/02/07 - Siggi - hpmuk releated code removed
    8081
    8182
     
    141142 case  $local_host  in
    142143     (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;;
    144145     (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;;
    148146     (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;;
    150148     (gfdl5)                 local_addres=165.132.26.58;  local_host=ibmy;;
    151149     (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;;
    154152     (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;;
    158156     (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;;
    162160     (scirocco)              local_addres=172.20.25.41;   local_host=lcmuk;;
    163161     (sun1|sun2)             local_addres=130.75.6.1;     local_host=unics;;
     
    218216    printf "\n        -f    filetransfer protocol               scp"
    219217    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,"
    221219    printf "\n              unics"
    222220    printf "\n        -m    memory demand per process in MByte  ---"
     
    282280 else
    283281    case  $remote_host  in
    284         (hpmuk)  qsubmem=d; qsubtime=t; queue=hpmuk; remote_addres=130.75.105.19; submcom=/opt/nqs/bin/qsub;;
    285282        (ibm)    queue=p690_standard; remote_addres=134.76.99.81; submcom=/usr/lpp/LoadL/full/bin/llsubmit;;
    286283        (ibmb)   queue=cpar; remote_addres=130.73.230.10; submcom=/usr/lpp/LoadL/full/bin/llsubmit;;
     
    304301    ndq=$no_default_queue
    305302    case  $remote_host  in
    306         (hpmuk)  case  $ndq  in
    307                      (hpmuk)  error=false;;
    308                      (*)      error=true;;
    309                  esac;;
    310303        (ibm)    case  $ndq  in
    311304                     (p690_express|p690_standard|p690_long)  error=false;;
Note: See TracChangeset for help on using the changeset viewer.