#! /bin/sh
# /etc/init.d/nodescored
#
nodescore
case "$1" in
start)
echo "Starting NodeScore "
;;
stop)
killall node
echo "Stopping Nodescore"
*)
echo "Usage: /etc/init.d/nodescored {start|stop}"
exit 1
esac
exit 0