stop 327 B

12345678910111213
  1. #!/bin/sh
  2. pidfile=/dev/shm/xwbphotovote.pid
  3. if [ ! -f "$pidfile" ]; then
  4. echo -e "Stopping swyzxwb_photovote CGI..............[\033[40;31mFAILURE\033[0m]"
  5. echo "CGI Maybe Not Running."
  6. else
  7. read fpid < $pidfile
  8. kill $fpid
  9. echo -e "Stopping swyzxwb_photovote CGI..............[\033[40;32mOK\033[0m]"
  10. rm -f $pidfile
  11. fi