view nodescored @ 79:e4db7d4d1d08

major UI fixes for martin version interface
author Rob Canning <rob@foo.net>
date Tue, 15 Jul 2014 23:49:44 +0100
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