Changeset 372 for branches


Ignore:
Timestamp:
07/01/2009 18:38:31 (3 years ago)
Author:
blee
Message:

Merging confsync fixes from trunk.

Location:
branches/confman-1.9
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/confman-1.9

  • branches/confman-1.9/abspath.in

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/confman-1.9/conflock.in

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/confman-1.9/confmanlib.sh.in

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/confman-1.9/confsync.in

    r367 r372  
    107107fi 
    108108 
    109 if [ -n "$sys_revision" ] && [ $tar_revision -lt $sys_revision ] ; then 
     109if [ -n "$sys_revision" ] && [ $tar_revision -le $sys_revision ] ; then 
    110110    echo "System is up to date." | conf_logger 
     111    conf_unlock_system 
    111112    rm -rf $tmpdir 
     113    trap EXIT 
    112114    exit 0 
    113115fi 
     
    115117echo "Sync operation started" | conf_logger 
    116118for layer in $(conf_get_recipe) ; do 
    117         echo "Rolling on $layer..." 
    118         conf_rollout $layer || conf_cleanExit 
     119    echo "Rolling on $layer..." 
     120    conf_rollout $layer || conf_cleanExit 
    119121done 
    120122for file in $SINGULARITIES ; do 
    121123    echo "Assembing singularity $file..." 
    122         conf_assemble_sing $file || conf_cleanExit 
     124    conf_assemble_sing $file || conf_cleanExit 
    123125done 
    124126conf_markclean 
Note: See TracChangeset for help on using the changeset viewer.