Changeset 555 for branches


Ignore:
Timestamp:
12/16/2011 18:05:03 (5 months ago)
Author:
blee
Message:

Merge fix for #113 into confman-1.9.

Closes #113

Location:
branches/confman-1.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/confman-1.9

    • Property svn:mergeinfo changed
      /trunkmerged: 510
  • branches/confman-1.9/confmanlib.sh.in

    r544 r555  
    11361136# Because an exit doesn't help much when things are in subshells, we 
    11371137# provide a nice, easy way to halt execution. The result is the clean 
    1138 # exit trap gets called. 
     1138# exit trap gets called. We also call exit to halt execution of this 
     1139# subshell (otherwise some commands will still be run before the parent 
     1140# handles the signal and kills us off). 
    11391141function die { 
    11401142    kill -INT $MY_PID 
     1143    exit 1 
    11411144} 
    11421145 
Note: See TracChangeset for help on using the changeset viewer.