Created
April 11, 2012 09:45
-
-
Save arusso/2358292 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WAIT_TIME=15 # in minutes | |
OUT=`find . -mmin -${WAIT_TIME} | grep restart` | |
if [ "$OUT" == "" ]; then | |
# we haven't committed murder in $WAIT_TIME minutes, lets do it again | |
/bin/kill -f `ps ux -W | grep srcd | awk '{print $1}'` | |
# touch our breadcrumb | |
touch restart | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment