Created
August 25, 2014 09:36
Wrapper to make sure a command is run only once at a time
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
#!/bin/sh | |
# taken from http://stackoverflow.com/a/959511/150932 | |
SCRIPTNAME=`basename $0` | |
PIDFILE=/var/run/${SCRIPTNAME}.pid | |
if [ -f ${PIDFILE} ]; then | |
#verify if the process is actually still running under this pid | |
OLDPID=`cat ${PIDFILE}` | |
RESULT=`ps -ef | grep ${OLDPID} | grep ${SCRIPTNAME}` | |
if [ -n "${RESULT}" ]; then | |
echo "Script already running! Exiting" | |
exit 255 | |
fi | |
fi | |
#grab pid of this process and update the pid file with it | |
PID=`ps -ef | grep ${SCRIPTNAME} | head -n1 | awk ' {print $2;} '` | |
echo ${PID} > ${PIDFILE} | |
echo "PUT YOUR COMMANDS IN PLACE OF THIS ECHO" | |
if [ -f ${PIDFILE} ]; then | |
rm ${PIDFILE} | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment