2019-10-29 11:08:23 +01:00
|
|
|
#!/bin/sh
|
|
|
|
. ./test.rc
|
|
|
|
|
|
|
|
if [ -e ${PID} ]; then
|
2019-10-30 17:14:29 +01:00
|
|
|
echo "Killing `cat ${PID}` ..."
|
2019-10-29 11:08:23 +01:00
|
|
|
kill `cat ${PID}`
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f ${LOG}
|
|
|
|
rm -f ${PID}
|
2019-10-30 17:14:29 +01:00
|
|
|
rm -f ${CAP}
|
|
|
|
rm -f ${SOCK}
|
|
|
|
rm -f ${CONF}
|