I want to pack a rack web-application in order to distribute it, In which a infinite loop resides. So it won't stop until my ctrl-c. But it seems ocra will only pack it when it ends 'naturally', and ctrl-c stopped the process.

have been tring use exit or abort in callmethod of object being passed to rake. after which the whole process do not end, some trace info appears though.

it is possible to invoke rake.run in a thread, and end application after given time. But I do not want to distribute a suicide version. so is there some more eligible and controllable way to normally end it ?

not sure if this is a insane question, but thanks in advance.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 2 down vote accepted

According to the OCRA docu, OCRA sets an environment variable OCRA_EXECUTABLE when being run.

So you could check for that environment var in your code and break the loop if OCRA is running, e.g.:

 while true
   break if ENV.has_key? 'OCRA_EXECUTABLE'
   ...
 end
link|improve this answer
wow this is more than helpful. thanks! I have been thinking about some weird way to end it insynchronally with a special HTTP request.. – jokester Sep 27 '11 at 8:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.