Skip to content

Instantly share code, notes, and snippets.

Created April 16, 2014 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/10849492 to your computer and use it in GitHub Desktop.
Save anonymous/10849492 to your computer and use it in GitHub Desktop.
script to check if tor-weather background job is running or not
#!/bin/sh
# Checks if the listener process is running or not. If not
# lauches it.
SERVICE='python manage.py runlistener'
cd /vagrant/weather
if ps ax | grep -v grep | grep $SERVICE > /dev/null
then
echo "$SERVICE is running, everything is fine"
else
echo "$SERVICE is not running"
$SERVICE
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment