8f459d349a
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
14 lines
175 B
Bash
Executable File
14 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
. ./test.rc
|
|
|
|
if [ -e ${PID} ]; then
|
|
echo "Killing `cat ${PID}` ..."
|
|
kill `cat ${PID}`
|
|
fi
|
|
|
|
rm -f ${LOG}
|
|
rm -f ${PID}
|
|
rm -f ${CAP}
|
|
rm -f ${SOCK}
|
|
rm -f ${CONF}
|