#!/bin/sh
#
# Change LED color...
#

case "$1" in
  start)
        echo "Change LED color to Green..."
        echo green > /sys/class/leds/system_led/color
        ;;
  stop)
        echo -n "Change LED color to Yellow..."
        echo yellow > /sys/class/leds/system_led/color
        ;;
  restart|reload)
        "$0" stop
        "$0" start
        ;;
  *)
        echo "Usage: $0 {start|stop|restart}"
        exit 1
esac

exit $?

