Created
October 15, 2015 09:05
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cd /home/administrator/rupy | |
SERVICE_NAME=rupy-server | |
PATH_TO_JAR=/home/administrator/rupy/bin/http.jar | |
PID_PATH_NAME=/tmp/rupy-server-pid | |
case $1 in | |
start) | |
echo "Starting $SERVICE_NAME ..." | |
if [ ! -f $PID_PATH_NAME ]; then | |
nohup java -Djava.awt.headless=true -classpath $PATH_TO_JAR se.rupy.http.Daemon -pass secret -log 2>> /dev/null >> /dev/null & | |
echo $! > $PID_PATH_NAME | |
echo "$SERVICE_NAME started ..." | |
else | |
echo "$SERVICE_NAME is already running ..." | |
fi | |
;; | |
stop) | |
if [ -f $PID_PATH_NAME ]; then | |
PID=$(cat $PID_PATH_NAME); | |
echo "$SERVICE_NAME stoping ..." | |
kill $PID; | |
echo "$SERVICE_NAME stopped ..." | |
rm $PID_PATH_NAME | |
else | |
echo "$SERVICE_NAME is not running ..." | |
fi | |
;; | |
restart) | |
if [ -f $PID_PATH_NAME ]; then | |
PID=$(cat $PID_PATH_NAME); | |
echo "$SERVICE_NAME stopping ..."; | |
kill $PID; | |
echo "$SERVICE_NAME stopped ..."; | |
rm $PID_PATH_NAME | |
echo "$SERVICE_NAME starting ..." | |
nohup java -Djava.awt.headless=true -classpath $PATH_TO_JAR se.rupy.http.Daemon -pass secret -log 2>> /dev/null >> /dev/null & | |
echo $! > $PID_PATH_NAME | |
echo "$SERVICE_NAME started ..." | |
else | |
echo "$SERVICE_NAME is not running ..." | |
fi | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment