b67d57cf59
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
12 lines
124 B
Bash
Executable File
12 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
. ./test.rc
|
|
|
|
if [ -e ${PID} ]; then
|
|
kill `cat ${PID}`
|
|
fi
|
|
|
|
rm -f ${CFG}
|
|
rm -f ${LOG}
|
|
rm -f ${PID}
|
|
rm -f ${SCK}
|