Changeset 439


Ignore:
Timestamp:
04/07/11 17:04:00 (13 years ago)
Author:
sdipsl
Message:

ChunckJob? frequency must be expressed as year *Y|*y. Check it's the case. Ticket #55

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/libIGCM_config/libIGCM_config.ksh

    r427 r439  
    339339        value=${CHUNCK2D_SIZE[${i}]} 
    340340        IGCM_post_CheckModuloFrequency value config_Post_TimeSeriesFrequency 
     341        case ${value} in   
     342            *Y|*y) ;;  
     343            *)  IGCM_debug_Print 3 "All ChunckJob2D frequency must be expressed in year *Y|*y in comp.card" 
     344                IGCM_debug_Exit "This will stop the job" ;; 
     345        esac 
    341346        (( i=i+1 )) 
    342347    done 
     
    348353        value=${CHUNCK3D_SIZE[${i}]} 
    349354        IGCM_post_CheckModuloFrequency value config_Post_TimeSeriesFrequency 
     355        case ${value} in   
     356            *Y|*y) ;;  
     357            *)  IGCM_debug_Print 3 "All ChunckJob3D frequency must be expressed in year *Y|*y in comp.card" 
     358                IGCM_debug_Exit "This will stop the job" ;; 
     359        esac 
    350360        (( i=i+1 )) 
    351361    done 
Note: See TracChangeset for help on using the changeset viewer.