#! /bin/sh
# /etc/init.d/spigit

### BEGIN INIT INFO
# Provides:          spigit
# Required-Start:    $local_fs $network $syslog
# Required-Stop:     $local_fs $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: spigit
# Description:       spigit start-stop-daemon
### END INIT INFO

case "$1" in
  start)
    ;;
  stop)
    echo "Stopping spigit"
    ;;
  *)
    echo "{start|stop}"
    exit 1
    ;;
esac

exit 0
