Small script to start weinre remote debugging server
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 | |
# | |
# 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