2019-10-29 15:38:23 +05:30
|
|
|
#!/bin/sh
|
|
|
|
. ./test.rc
|
|
|
|
|
|
|
|
if [ -e ${PID} ]; then
|
2019-10-30 21:44:29 +05:30
|
|
|
echo "Killing `cat ${PID}` ..."
|
2019-10-29 15:38:23 +05:30
|
|
|
kill `cat ${PID}`
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f ${LOG}
|
|
|
|
rm -f ${PID}
|
2019-10-30 21:44:29 +05:30
|
|
|
rm -f ${CAP}
|
|
|
|
rm -f ${SOCK}
|
|
|
|
rm -f ${CONF}
|