#!/bin/sh
### BEGIN INIT INFO
# Provides:          leds-stop-@LVL@
# Required-Start:    $local_fs $all
# Required-Stop:
# Default-Start:     S 1 2 3 4 5
# Default-Stop:
# Short-Description: Stop led blinking
# Description:       This script is executed at the end of
#                    each run-level transition.  It should be
#                    the last 'start' script.
### END INIT INFO

case "$1" in
start)	/etc/init.d/leds-lvl1 stop
	;;
restart|force-reload|*)
	echo "led change: $1: command ignored" >&2
	;;
esac
