#!/bin/sh
if /bin/ps ax | /usr/bin/grep -v grep | /usr/bin/grep "gpm" ; then
  GPM_RUNNING=true
  /bin/killall gpm
  /bin/touch /tmp/gpmkilled
  /usr/bin/sleep 1
fi
