Ignore:
Timestamp:
10/08/2007 17:12:27 (5 years ago)
Author:
arjun
Message:

Commiting 1.5.5a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/confman-1.5.5a/confsync.sh

    r157 r177  
    1212## 
    1313 
    14 . /usr/local/rescomp/lib/confmancommon.sh 
     14# Try loading a development library first 
     15if [ -r ./confmancommon.sh ] ; then 
     16    echo "Loading development library from current working directory." >&2 
     17    . ./confmancommon.sh 
     18elif [ -r /usr/local/rescomp/lib/confmancommon.sh ] ; then 
     19    . /usr/local/rescomp/lib/confmancommon.sh 
     20else 
     21    echo "Can't find confmancommon.sh. Exiting." >&2 
     22fi 
    1523 
    1624# If we're in debug mode, we should log stderr messages to the logger 
     
    5866for layer in $LAYERS ; do 
    5967        echo "Rolling on $layer..." 
    60         conf_rollout $layer || conf_cleanexit 
     68        conf_rollout $layer || conf_cleanExit 
    6169done 
    6270for file in $SINGULARITIES ; do 
    6371    echo "Assembing singularity $file..." 
    64         conf_assemble_sing $file || conf_cleanexit 
     72        conf_assemble_sing $file || conf_cleanExit 
    6573done 
    6674conf_markclean 
Note: See TracChangeset for help on using the changeset viewer.