mirror of
https://github.com/cowrie/cowrie.git
synced 2025-07-01 18:07:27 -04:00
13 lines
164 B
Bash
Executable File
13 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PIDFILE=var/run/cowrie.pid
|
|
|
|
cd $(dirname $0)
|
|
|
|
PID=$(cat ${PIDFILE} 2>/dev/null)
|
|
|
|
if [ -n "$PID" ]; then
|
|
echo "Stopping cowrie..."
|
|
kill -TERM $PID
|
|
fi
|