Skip to content

Instantly share code, notes, and snippets.

@akuryan
Created July 14, 2014 11:50
Show Gist options
  • Save akuryan/aa458edd325ff840eb97 to your computer and use it in GitHub Desktop.
Save akuryan/aa458edd325ff840eb97 to your computer and use it in GitHub Desktop.
Small script to start weinre remote debugging server
#!/bin/sh
#
# chkconfig: 35 99 99
# description: Node.js /home/nodejs/sample/app.js
#
. /etc/rc.d/init.d/functions
USER="weinre"
ROOT_DIR="/usr/local/bin"
SERVER="$ROOT_DIR/weinre"
OPTIONS="--boundHost -all- --httpPort 3000"
LOG_FILE="/var/log/weinre.log"
LOCK_FILE="/var/lock/subsys/node-server"
do_start()
{
if [ ! -f "$LOCK_FILE" ] ; then
echo -n $"Starting $SERVER: "
runuser -l "$USER" -c "$SERVER $OPTIONS >> $LOG_FILE &" && echo_success || echo_failure
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch $LOCK_FILE
else
echo "$SERVER is locked."
RETVAL=1
fi
}
do_stop()
{
echo -n $"Stopping $SERVER: "
pid=`ps -aefw | grep "$SERVER" | grep -v " grep " | awk '{print $2}'`
kill -9 $pid > /dev/null 2>&1 && echo_success || echo_failure
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f $LOCK_FILE
}
case "$1" in
start)
do_start
;;
stop)
do_stop
;;
restart)
do_stop
do_start
;;
*)
echo "Usage: $0 {start|stop|restart}"
RETVAL=1
esac
exit $RETVAL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment