Changeset 478


Ignore:
Timestamp:
06/01/11 11:18:29 (13 years ago)
Author:
sdipsl
Message:
  • ACo as we do not use TMPDIR on scalar mercure we have to clean the tmp
  • Job running on the titane mono are not killed randomly anymore by root
Location:
trunk/libIGCM
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/AA_rebuild_fromArchive

    r469 r478  
    9696#-Q- titane #MSUB -T 86400           # Limite de temps elapsed du job 
    9797#-Q- titane #MSUB -p gen2211 
    98 #-Q- titane #####MSUB -q mono        # mono killed prematurly rebuild job 
    99 #-Q- titane #MSUB -n 8               # workaround to reserve full node 
     98#-Q- titane #MSUB -q mono 
    10099#-Q- lxiv8 ###################### 
    101100#-Q- lxiv8 ## OBELIX      LSCE ## 
  • trunk/libIGCM/AA_rebuild_fromWorkdir

    r469 r478  
    9696#-Q- titane #MSUB -T 86400          # Limite de temps elapsed du job 
    9797#-Q- titane #MSUB -p gen2211 
    98 #-Q- titane #####MSUB -q mono        # mono killed prematurly rebuild job 
    99 #-Q- titane #MSUB -n 8               # workaround to reserve full node 
     98#-Q- titane #MSUB -q mono 
    10099#-Q- lxiv8 ###################### 
    101100#-Q- lxiv8 ## OBELIX      LSCE ## 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_mercure.ksh

    r463 r478  
    124124#==================================================== 
    125125#- RUN_DIR_PATH : Temporary working directory (=> TMP) 
    126 typeset -r RUN_DIR_PATH=${RUN_DIR_PATH:=${CSCRATCHDIR}/TMPDIR_IGCM/tmp$$} 
     126typeset -r RUN_DIR_PATH=${RUN_DIR_PATH:=${CSCRATCHDIR}/TMPDIR_IGCM/${JOBID}} 
    127127 
    128128#==================================================== 
     
    676676    if ( $DEBUG_sys ) ; then 
    677677        echo "IGCM_sys_RmRunDir :" $@ 
    678         echo "Dummy call, let the scheduler do that."  
     678    fi 
     679 
     680    typeset RET 
     681 
     682    echo rm $@ > out_rsync 2>&1 
     683    \rm $@ >> out_rsync 2>&1 
     684    RET=$? 
     685 
     686    if [ ${RET} -gt 0 ] ; then 
     687        echo "IGCM_sys_RmRunDir : error." 
     688        cat out_rsync 
     689        IGCM_debug_Exit "IGCM_sys_RmRunDir" 
     690    else 
     691        \rm out_rsync 
    679692    fi 
    680693    IGCM_debug_PopStack "IGCM_sys_RmRunDir" 
Note: See TracChangeset for help on using the changeset viewer.