Changeset 2506 for palm/trunk/SCRIPTS/palmrun
- Timestamp:
- Sep 29, 2017 8:30:37 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmrun
r2501 r2506 27 27 # ----------------- 28 28 # $Id$ 29 # option -V added to check for an existing SOURCES_FOR_RUN_... folder 30 # host configuration added to SOURCES_FOR_RUN_... folder name 31 # host_identifier renamed host_configuration 32 # option -W added to allow for job dependencies 33 # 34 # 2501 2017-09-26 11:41:55Z raasch 29 35 # default value for number of cores (option -X) set to 1 30 36 # bugfix for mechanism which overwrites configuration file settings with values … … 76 82 cpp_options="" 77 83 cpumax=0 84 create_batch_job=false 78 85 create_jobfile_only=false 79 delete_temporary_catalog=true80 create_batch_job=false81 86 create_remote_batch_job=false 82 87 dashes=" ----------------------------------------------------------------------------" 83 88 defaultqueue="" 89 delete_temporary_catalog=true 84 90 do_compile=true 85 91 do_trace=false … … 90 96 fname=test 91 97 global_revision="" 92 host_ identifier="default"98 host_configuration="default" 93 99 hostfile="" 94 100 hp="" … … 107 113 done 108 114 module_calls="" 115 palmrun_memory="" 109 116 palmrun_script_name=$prc 110 117 openmp=false 118 previous_job="" 111 119 project_account="" 112 120 queue=none … … 126 134 transfer_problems=false 127 135 user_source_path="" 136 use_existing_sources_folder="" 128 137 use_openmp=false 129 138 version="palmrun 1.0 Rev$Rev: 2303 $" … … 170 179 # READ SHELLSCRIPT-OPTIONS AND REBUILD THE PALMRUN-COMMAND STRING (prc), 171 180 # WHICH WILL BE USED TO START RESTART-JOBS 172 while getopts :a:A:bBCd:FG:h:jkm:M:O:q:r:R:s:t:T:u:U:v w:xX:yY:Z option181 while getopts :a:A:bBCd:FG:h:jkm:M:O:q:r:R:s:t:T:u:U:vVw:W:xX:yY:Z option 173 182 do 174 183 case $option in … … 181 190 (F) create_jobfile_only=true;; 182 191 (G) global_revision=$OPTARG; prc="$prc -G'$OPTARG'";; 183 (h) host_ identifier=$OPTARG; prc="$prc -h$OPTARG";;192 (h) host_configuration=$OPTARG; prc="$prc -h$OPTARG";; 184 193 (j) running_in_batch_mode=true;; 185 194 (k) keep_data_from_previous_run=true; prc="$prc -k";; … … 196 205 (U) return_username=$OPTARG; prc="$prc -U$OPTARG";; 197 206 (v) silent=true; prc="$prc -v";; 207 (V) use_existing_sources_folder="-V";; 198 208 (w) max_par_io_str=$OPTARG; prc="$prc -w$OPTARG";; 209 (W) previous_job=$OPTARG;; 199 210 (x) do_trace=true;set -x; prc="$prc -x";; 200 211 (X) palmrun_cores=$OPTARG; prc="$prc -X$OPTARG";; … … 225 236 printf "\n -d base name of files attached to program test" 226 237 printf "\n -F create batch job file only ---" 227 printf "\n -h configuration identifier\"default\" "238 printf "\n -h host configuration \"default\" " 228 239 printf "\n -k keep data from previous run" 229 240 printf "\n -m memory demand in MB (batch-jobs) 0 MB" … … 239 250 printf "\n -u username on remote machine \"\" " 240 251 printf "\n -v no prompt for confirmation ---" 252 printf "\n -V check if SOURCES_FOR_RUN_... exists ---" 241 253 printf "\n -w maximum parallel io streams as given by -X" 254 printf "\n -W name of job to wait for ---" 242 255 printf "\n -x tracing of palmrun for debug purposes ---" 243 256 printf "\n -X # of processors (on parallel machines) 1" … … 266 279 267 280 268 # BUILD THE CONFIGURATION-FILE NAME 269 config_file=.palm.config.$host_identifier 281 # BUILD THE CONFIGURATION-FILE NAME AND THE SOURCES_FOR_RUN-FOLDER NAME 282 config_file=.palm.config.$host_configuration 283 sources_for_run_catalog=SOURCES_FOR_RUN_${host_configuration}_$fname 270 284 271 285 … … 574 588 575 589 # VALUES OF PALMRUN-OPTIONS OVERWRITE THOSE FROM THE CONFIGURATION-FILE 576 [[ $palmrun_memory != 0]] && memory=$palmrun_memory590 [[ $palmrun_memory != "" ]] && memory=$palmrun_memory 577 591 [[ $palmrun_cpumax != "" ]] && cpumax=$palmrun_cpumax 578 592 [[ "$palmrun_cores" != "" ]] && cores=$palmrun_cores … … 609 623 then 610 624 611 if [[ ! -d ${fast_io_catalog}/ SOURCES_FOR_RUN_$fname]]612 then 613 printf "\n +++ directory ${fast_io_catalog}/ SOURCES_FOR_RUN_$fnameis missing"625 if [[ ! -d ${fast_io_catalog}/${sources_for_run_catalog} ]] 626 then 627 printf "\n +++ directory ${fast_io_catalog}/${sources_for_run_catalog} is missing" 614 628 printf "\n Please check the output of the palmrun-call" 615 629 printf "\n that you did on your local host." … … 634 648 fi 635 649 636 rm -rf SOURCES_FOR_RUN_$fname637 mkdir -p SOURCES_FOR_RUN_$fname650 rm -rf $sources_for_run_catalog 651 mkdir -p $sources_for_run_catalog 638 652 639 653 if [[ "$source_list" = LM ]] … … 677 691 for filename in $Filenames 678 692 do 679 cp $filename $ working_directory/SOURCES_FOR_RUN_$fname693 cp $filename ${working_directory}/${sources_for_run_catalog} 680 694 source_list=$source_list"$filename " 681 695 done … … 707 721 locat=source; exit 708 722 else 709 cp $filename $ working_directory/SOURCES_FOR_RUN_$fname723 cp $filename ${working_directory}/${sources_for_run_catalog} 710 724 fi 711 725 … … 723 737 locat=make; exit 724 738 else 725 cp $makefile SOURCES_FOR_RUN_$fname/Makefile739 cp $makefile ${sources_for_run_catalog}/Makefile 726 740 fi 727 741 … … 762 776 763 777 cd - > /dev/null 764 cd SOURCES_FOR_RUN_$fname778 cd $sources_for_run_catalog 765 779 766 780 # COPY MAKEFILE IF EXISTING … … 818 832 819 833 # COPY CONFIGURATION FILES 820 cp $config_file SOURCES_FOR_RUN_$fname821 cp $fileconnection_file SOURCES_FOR_RUN_$fname834 cp $config_file $sources_for_run_catalog 835 cp $fileconnection_file $sources_for_run_catalog 822 836 823 837 # COPY SHELLSCRIPTS 824 cp ${source_path}/../SCRIPTS/palmrun SOURCES_FOR_RUN_$fname825 cp ${source_path}/../SCRIPTS/batch_scp SOURCES_FOR_RUN_$fname838 cp ${source_path}/../SCRIPTS/palmrun $sources_for_run_catalog 839 cp ${source_path}/../SCRIPTS/batch_scp $sources_for_run_catalog 826 840 827 841 fi … … 1260 1274 if [[ $create_remote_batch_job = true ]] 1261 1275 then 1262 column1="execution on:"; column2="$host_ identifier(username: $remote_username)"1276 column1="execution on:"; column2="$host_configuration (username: $remote_username)" 1263 1277 else 1264 1278 if [[ $running_on_remote = true ]] 1265 1279 then 1266 column1="execution on:"; column2="$host_ identifier(IP:$remote_ip)"1280 column1="execution on:"; column2="$host_configuration (IP:$remote_ip)" 1267 1281 else 1268 column1="execution on:"; column2="$host_ identifier(IP:$local_ip)"1282 column1="execution on:"; column2="$host_configuration (IP:$local_ip)" 1269 1283 fi 1270 1284 fi … … 1327 1341 if [[ $create_batch_job = true || $create_remote_batch_job = true || $running_in_batch_mode = true ]] 1328 1342 then 1343 column1="memory demand / PE":; column2="$memory MB" 1344 printf "| %-25s%-45s | \n" "$column1" "$column2" 1329 1345 column1="job cpu time (h:m:s):"; column2="$timestring" 1330 1346 printf "| %-25s%-45s | \n" "$column1" "$column2" … … 1419 1435 fi 1420 1436 1421 if [[ $create_batch_job = true || "$LOADLBATCH" = yes ]]1422 then1423 column1="memory demand / PE":; column2="$memory MB"1424 printf "| %-25s%-45s | \n" "$column1" "$column2"1425 column1=CPU-time:; column2="$cpu_hours:$cpu_minutes:$cpu_seconds"1426 printf "| %-25s%-45s | \n" "$column1" "$column2"1427 fi1428 1429 1437 if [[ "$source_list" != "" ]] 1430 1438 then … … 1535 1543 1536 1544 line=`grep %base_directory $config_file` 1537 make_depository=`echo $line | cut -d" " -s -f2`/MAKE_DEPOSITORY_${host_identifier} 1538 echo "make_depository=$make_depository" 1539 echo "[[ ! -d ${make_depository} ]] && echo depository not found" | ssh -q $ssh_key ${remote_username}@${remote_ip} 2>&1 | tee ${host_identifier}_last_make_protokoll 1540 1541 if [[ $(grep -c "depository not found" ${host_identifier}_last_make_protokoll) != 0 ]] 1545 make_depository=`echo $line | cut -d" " -s -f2`/MAKE_DEPOSITORY_${host_configuration} 1546 echo "[[ ! -d ${make_depository} ]] && echo depository not found" | ssh -q $ssh_key ${remote_username}@${remote_ip} 2>&1 | tee ${host_configuration}_last_make_protokoll 1547 1548 if [[ $(grep -c "depository not found" ${host_configuration}_last_make_protokoll) != 0 ]] 1542 1549 then 1543 1550 printf "\n\n +++ make depository \"${make_depository}\"" … … 1545 1552 ask_for_make_depository=true 1546 1553 fi 1547 rm ${host_ identifier}_last_make_protokoll1554 rm ${host_configuration}_last_make_protokoll 1548 1555 1549 1556 else 1550 1557 1551 1558 # CHECK FOR MAKE_DEPOSITORY ON THE LOCAL HOST 1552 make_depository=${base_directory}/MAKE_DEPOSITORY_${host_ identifier}1559 make_depository=${base_directory}/MAKE_DEPOSITORY_${host_configuration} 1553 1560 if [[ ! -d ${make_depository} ]] 1554 1561 then … … 1580 1587 fi 1581 1588 1582 palmbuild -v -h $host_ identifier1589 palmbuild -v -h $host_configuration 1583 1590 1584 1591 if [[ $? != 0 ]] … … 1595 1602 fi 1596 1603 1597 palmbuild -v -h $host_identifier-d $fname1604 palmbuild -v $use_existing_sources_folder -h $host_configuration -d $fname 1598 1605 1599 1606 if [[ $? != 0 ]] … … 1603 1610 printf "\n +++ error while creating executable and/or other sources" 1604 1611 locat=execution 1605 rm -rf SOURCES_FOR_RUN_$fname1612 rm -rf $sources_for_run_catalog 1606 1613 exit 1607 1614 … … 1609 1616 1610 1617 printf "\n$dashes\n *** executable and other sources created\n" 1611 rm -rf SOURCES_FOR_RUN_$fname1618 rm -rf $sources_for_run_catalog 1612 1619 1613 1620 fi … … 1630 1637 tmpcreate=true 1631 1638 cd $TEMPDIR 1632 cp $ fast_io_catalog/SOURCES_FOR_RUN_$fname/{*,.[!.]*} $TEMPDIR1639 cp ${fast_io_catalog}/${sources_for_run_catalog}/{*,.[!.]*} $TEMPDIR 1633 1640 printf "\n *** changed to temporary directory: $TEMPDIR" 1634 1641 … … 1837 1844 # (FILE ENVPAR WILL BE READ BY PALM) 1838 1845 cat > ENVPAR << EOF 1839 &envpar run_identifier = '$fname', host = '$host_ identifier',1846 &envpar run_identifier = '$fname', host = '$host_configuration', 1840 1847 write_binary = .${write_binary}., tasks_per_node = $tasks_per_node, 1841 1848 maximum_parallel_io_streams = $maximum_parallel_io_streams, … … 2105 2112 transfer_failed=false 2106 2113 printf "\n >>> OUTPUT: ${localout[$i]}$catalog_string $append_string by SCP to" 2107 printf "\n ${pathout[$i]}/${host_ identifier}_${fname}${endout[$i]}$catalog_string\n"2114 printf "\n ${pathout[$i]}/${host_configuration}_${fname}${endout[$i]}$catalog_string\n" 2108 2115 2109 2116 # TRANSFER VIA SCP 2110 2117 if [[ "$remote_loginnode" != "" ]] 2111 2118 then 2112 echo "cd $TEMPDIR; ${fast_io_catalog}/ SOURCES_FOR_RUN_${fname}/batch_scp $PORTOPT $catalog_option $append_option -b -m $usecycle_option -u $local_username $return_address ${localout[$i]} \"${pathout[$i]}\" ${host_identifier}_${fname}${endout[$i]} ${extout[$i]}" | ssh -q $remote_username@$remote_loginnode2119 echo "cd $TEMPDIR; ${fast_io_catalog}/${sources_for_run_catalog}/batch_scp $PORTOPT $catalog_option $append_option -b -m $usecycle_option -u $local_username $return_address ${localout[$i]} \"${pathout[$i]}\" ${host_configuration}_${fname}${endout[$i]} ${extout[$i]}" | ssh -q $remote_username@$remote_loginnode 2113 2120 else 2114 batch_scp $PORTOPT $catalog_option $append_option -b -m $usecycle_option -u $local_username $return_address ${localout[$i]} "${pathout[$i]}" ${host_ identifier}_${fname}${endout[$i]} ${extout[$i]}2121 batch_scp $PORTOPT $catalog_option $append_option -b -m $usecycle_option -u $local_username $return_address ${localout[$i]} "${pathout[$i]}" ${host_configuration}_${fname}${endout[$i]} ${extout[$i]} 2115 2122 fi 2116 2123 [[ $? != 0 ]] && transfer_failed=true … … 2121 2128 then 2122 2129 printf " +++ transfer failed. Trying to save a copy on this host under:\n" 2123 printf " ${pathout[$i]}/${host_ identifier}_${fname}${endout[$i]}_$run_id\n"2130 printf " ${pathout[$i]}/${host_configuration}_${fname}${endout[$i]}_$run_id\n" 2124 2131 2125 2132 # FIRST CHECK, IF DIRECTORY EXISTS, AND CREATE IT, IF NECESSARY … … 2131 2138 mkdir -p $local_catalog 2132 2139 fi 2133 eval cp ${localout[$i]} ${pathout[$i]}/${host_ identifier}_${fname}${endout[$i]}_$run_id2140 eval cp ${localout[$i]} ${pathout[$i]}/${host_configuration}_${fname}${endout[$i]}_$run_id 2134 2141 transfer_problems=true 2135 2142 fi … … 2339 2346 2340 2347 # BUILD THE PALMRUN-COMMAND TO BE CALLED IN THE BATCH-JOB 2341 palmrun_com="$palmrun_script_name -d $fname -h $host_ identifier-m $memory -t $cpumax -q $queue -r $run_id -U $local_username"2348 palmrun_com="$palmrun_script_name -d $fname -h $host_configuration -m $memory -t $cpumax -q $queue -r $run_id -U $local_username" 2342 2349 [[ "$activation_string_list" != "" ]] && palmrun_com=${palmrun_com}" -a \"$activation_string_list\"" 2343 2350 [[ "$global_revision" != "" ]] && palmrun_com=${palmrun_com}" -G \"$global_revision\"" … … 2372 2379 # DETERMINE THE FULL PATHS FOR THE JOB PROTOCOL FILES ON THE LOCAL AND 2373 2380 # REMOTE HOST 2374 job_protocol_file_local=${local_jobcatalog}/${host_ identifier}_${job_id}2381 job_protocol_file_local=${local_jobcatalog}/${host_configuration}_${job_id} 2375 2382 job_protocol_file=$job_protocol_file_local 2376 2383 if [[ $create_remote_batch_job = true ]] 2377 2384 then 2378 job_protocol_file_remote=${remote_jobcatalog}/${host_ identifier}_${job_id}2385 job_protocol_file_remote=${remote_jobcatalog}/${host_configuration}_${job_id} 2379 2386 job_protocol_file=$job_protocol_file_remote 2380 2387 job_transfer_protocol_file=${remote_jobcatalog}/last_job_transfer_protocol … … 2392 2399 do 2393 2400 (( i = i + 1 )) 2394 line=`echo "${batch_directive[$i]}" | sed 's/{{JOB_ID}}/$job_id/g' | sed 's/{{JOBFILE}}/$job_protocol_file/g' | sed 's/{{CPU_HOURS}}/$cpu_hours/g' | sed 's/{{CPU_MINUTES}}/$cpu_minutes/g' | sed 's/{{CPU_SECONDS}}/$cpu_seconds/g' | sed 's/{{NODES}}/$nodes/g' | sed 's/{{CORES}}/$cores/g' | sed 's/{{TASKS_PER_NODE}}/$tasks_per_node/g' | sed 's/{{HOST_ IDENTIFIER}}/${host_identifier}/g' | sed 's/{{FNAME}}/$fname/g' | sed 's/{{QUEUE}}/$queue/g' | sed 's/{{MEMORY}}/$memory/g' | sed 's/{{PROJECT_ACCOUNT}}/$project_account/g'`2401 line=`echo "${batch_directive[$i]}" | sed 's/{{JOB_ID}}/$job_id/g' | sed 's/{{JOBFILE}}/$job_protocol_file/g' | sed 's/{{CPU_HOURS}}/$cpu_hours/g' | sed 's/{{CPU_MINUTES}}/$cpu_minutes/g' | sed 's/{{CPU_SECONDS}}/$cpu_seconds/g' | sed 's/{{NODES}}/$nodes/g' | sed 's/{{CORES}}/$cores/g' | sed 's/{{TASKS_PER_NODE}}/$tasks_per_node/g' | sed 's/{{HOST_CONFIGURATION}}/${host_configuration}/g' | sed 's/{{FNAME}}/$fname/g' | sed 's/{{QUEUE}}/$queue/g' | sed 's/{{MEMORY}}/$memory/g' | sed 's/{{PROJECT_ACCOUNT}}/$project_account/g' | sed 's/{{PREVIOUS_JOB}}/$previous_job/g'` 2395 2402 eval line=\"$line\" 2396 2403 echo "$line" >> $jobfile … … 2414 2421 do 2415 2422 (( i = i + 1 )) 2416 line=`echo "${batch_directive_transfer[$i]}" | sed 's/{{JOB_ID}}/$job_id/g' | sed 's/{{JOBFILE}}/$job_protocol_file/g' | sed 's/{{JOB_TRANSFER_PROTOCOL_FILE}}/$job_transfer_protocol_file/g' | sed 's/{{CPU_HOURS}}/$cpu_hours/g' | sed 's/{{CPU_MINUTES}}/$cpu_minutes/g' | sed 's/{{CPU_SECONDS}}/$cpu_seconds/g' | sed 's/{{NODES}}/$nodes/g' | sed 's/{{TASKS_PER_NODE}}/$tasks_per_node/g' | sed 's/{{HOST_ IDENTIFIER}}/${host_identifier}/g' | sed 's/{{FNAME}}/$fname/g' | sed 's/{{PROJECT_ACCOUNT}}/$project_account/g'`2423 line=`echo "${batch_directive_transfer[$i]}" | sed 's/{{JOB_ID}}/$job_id/g' | sed 's/{{JOBFILE}}/$job_protocol_file/g' | sed 's/{{JOB_TRANSFER_PROTOCOL_FILE}}/$job_transfer_protocol_file/g' | sed 's/{{CPU_HOURS}}/$cpu_hours/g' | sed 's/{{CPU_MINUTES}}/$cpu_minutes/g' | sed 's/{{CPU_SECONDS}}/$cpu_seconds/g' | sed 's/{{NODES}}/$nodes/g' | sed 's/{{TASKS_PER_NODE}}/$tasks_per_node/g' | sed 's/{{HOST_CONFIGURATION}}/${host_configuration}/g' | sed 's/{{FNAME}}/$fname/g' | sed 's/{{PROJECT_ACCOUNT}}/$project_account/g'` 2417 2424 eval line=\"$line\" 2418 2425 echo "$line" >> $jobfile … … 2421 2428 2422 2429 echo "set -x" >> $jobfile 2423 echo "${fast_io_catalog}/ SOURCES_FOR_RUN_${fname}/batch_scp $PORTOPT -d -w 10 -u $local_username $local_ip $job_protocol_file_remote \"$local_jobcatalog\" ${host_identifier}_${fname}" >> $jobfile2430 echo "${fast_io_catalog}/${sources_for_run_catalog}/batch_scp $PORTOPT -d -w 10 -u $local_username $local_ip $job_protocol_file_remote \"$local_jobcatalog\" ${host_configuration}_${fname}" >> $jobfile 2424 2431 echo "%%END%%" >> $jobfile 2425 2432 echo "echo \" *** submitting job for transfering the job protocol file to $local_ip\" " >> $jobfile … … 2456 2463 echo "cd $TEMPDIR" >> $jobfile 2457 2464 echo "export TEMPDIR=$TEMPDIR" >> $jobfile 2458 echo "cp $ fast_io_catalog/SOURCES_FOR_RUN_$fname/{*,.[!.]*} ." >> $jobfile2465 echo "cp ${fast_io_catalog}/${sources_for_run_catalog}/{*,.[!.]*} ." >> $jobfile 2459 2466 echo "export PATH=.:\$PATH" >> $jobfile 2460 2467 echo "export execute_palmrun=true" >> $jobfile … … 2486 2493 echo " echo \" \" " >> $jobfile 2487 2494 echo " echo \"+++ file ${remotepathin[$i]} could not be created\" " >> $jobfile 2488 echo " echo \" please check, if directory exists on $host_ identifier!\" " >> $jobfile2495 echo " echo \" please check, if directory exists on $host_configuration!\" " >> $jobfile 2489 2496 echo " echo \"+++ PALMRUN will not be continued\" " >> $jobfile 2490 2497 echo " execute_palmrun=false" >> $jobfile … … 2523 2530 if [[ $do_trace = true ]] 2524 2531 then 2525 echo " scp $ssh_key $PORTOPT $jobfile ${remote_username}@${remote_ip}:${remote_jobcatalog}/${host_ identifier}_${job_id}"2526 fi 2527 scp $ssh_key $PORTOPT $jobfile ${remote_username}@${remote_ip}:${remote_jobcatalog}/${host_ identifier}_${job_id}2532 echo " scp $ssh_key $PORTOPT $jobfile ${remote_username}@${remote_ip}:${remote_jobcatalog}/${host_configuration}_${job_id}" 2533 fi 2534 scp $ssh_key $PORTOPT $jobfile ${remote_username}@${remote_ip}:${remote_jobcatalog}/${host_configuration}_${job_id} 2528 2535 2529 2536 echo " " … … 2531 2538 if [[ $do_trace = true ]] 2532 2539 then 2533 echo " cd $remote_jobcatalog; $submit_command ${host_ identifier}_${job_id}; rm ${host_identifier}_${job_id} | ssh -q $ssh_key $SSH_PORTOPT ${remote_username}@${remote_ip} 2>&1"2534 fi 2535 echo "cd $remote_jobcatalog; $submit_command ${host_ identifier}_${job_id}; rm ${host_identifier}_${job_id}" | ssh -q $ssh_key $SSH_PORTOPT ${remote_username}@${remote_ip} 2>&12540 echo " cd $remote_jobcatalog; $submit_command ${host_configuration}_${job_id}; rm ${host_configuration}_${job_id} | ssh -q $ssh_key $SSH_PORTOPT ${remote_username}@${remote_ip} 2>&1" 2541 fi 2542 echo "cd $remote_jobcatalog; $submit_command ${host_configuration}_${job_id}; rm ${host_configuration}_${job_id}" | ssh -q $ssh_key $SSH_PORTOPT ${remote_username}@${remote_ip} 2>&1 2536 2543 2537 2544 elif [[ $create_batch_job = true ]] … … 2539 2546 2540 2547 eval local_jobcatalog=$local_jobcatalog 2541 cp $jobfile ${local_jobcatalog}/${host_ identifier}_${job_id}2548 cp $jobfile ${local_jobcatalog}/${host_configuration}_${job_id} 2542 2549 cd $local_jobcatalog 2543 2550 echo " " … … 2545 2552 if [[ $do_trace = true ]] 2546 2553 then 2547 echo "$submit_command ${host_ identifier}_${job_id}"2548 fi 2549 $submit_command ${host_ identifier}_${job_id}2550 rm ${host_ identifier}_${job_id}2554 echo "$submit_command ${host_configuration}_${job_id}" 2555 fi 2556 $submit_command ${host_configuration}_${job_id} 2557 rm ${host_configuration}_${job_id} 2551 2558 cd - > /dev/null 2552 2559
Note: See TracChangeset
for help on using the changeset viewer.