cowrie/stop.sh

13 lines
164 B
Bash
Raw Normal View History

2014-05-30 03:15:02 +00:00
#!/bin/sh
2016-10-24 11:21:32 +00:00
PIDFILE=var/run/cowrie.pid
2014-05-30 03:15:02 +00:00
cd $(dirname $0)
2016-10-24 11:21:32 +00:00
PID=$(cat ${PIDFILE} 2>/dev/null)
2014-05-30 03:15:02 +00:00
if [ -n "$PID" ]; then
2016-02-18 04:12:50 +00:00
echo "Stopping cowrie..."
2014-05-30 03:15:02 +00:00
kill -TERM $PID
2014-06-10 16:28:57 +00:00
fi