#!/bin/sh
PID=qpidd.pid
if [ -f $PID ] ; then kill -9 `cat $PID` ; rm -f $PID ; fi
