view nodescored @ 56:d8255f804d3d

added todo for zocky to have a look at
author tzara <rc-web@kiben.net>
date Wed, 19 Dec 2012 17:40:38 +0000
parents a79555d4ad18
children
line wrap: on
line source
#! /bin/sh
# /etc/init.d/nodescored
#
nodescore

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

exit 0