#! /bin/sh
### BEGIN INIT INFO
# Provides:          local-stereo
# Required-Start:    $all
# Required-Stop:
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: init stereo state/power off stereo
# Description:       init stereo state/power off stereo
### END INIT INFO

NAME=stereo
DAEMON=/usr/local/bin/stereo

[ -x "$DAEMON" ] || exit 0

case "$1" in
  start)
	"$DAEMON" init
	;;
  stop)
	"$DAEMON" off
	;;
  restart|force-reload)
  	;;
  *)
	echo "Usage: $NAME {start|stop|restart|force-reload}" >&2
	exit 3
	;;
esac
