8 lines
177 B
Bash
8 lines
177 B
Bash
#!/bin/sh
|
|
PID_FILE=/var/run/orion.pid
|
|
if [ -e ${PID_FILE} ]; then
|
|
echo -n "Orion Server is still running."
|
|
/bin/kill `cat ${PID_FILE}`
|
|
rm -f ${PID_FILE}
|
|
echo " Stopped."
|
|
fi
|