Mercurial > hg > nodescore
view nodescored @ 101:52e44ee1c791 tip master
enabled all scores in autostart script
author | Rob Canning <rc@kiben.net> |
---|---|
date | Tue, 21 Apr 2015 16:20:57 +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