[Bug 1515876] [NEW] Burp 1.4.40 is the new 'stable' version

2015-11-12 Thread Wade Fitzpatrick
Public bug reported: In case you missed the announcement: https://sourceforge.net/p/burp/mailman/message/34416247/ Burp 1.4.40 is still compatible with 1.3 and earlier, as well as 2.0.x using protocol=1. Non-LTS versions deserve an upgrade. I believe the reason this has not been flagged before i

[Bug 406397] Re: init: job stuck with expect fork/daemon when parent reaps child

2013-03-14 Thread Wade Fitzpatrick
I had a problem with john miller's bash script because bash didn't die quickly enough for the microsleep to get re-parented by init (upstart), so here is a better version: #!/bin/bash usleep 1 & firstPID=$! #first lets exhaust the space while (( $! >= $firstPID )) do usleep 1 & done # [ will