You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
469 B
23 lines
469 B
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012-2013 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
case "`cat /proc/device-tree/model`" in
|
|
"Seagate FreeAgent Dockstar")
|
|
ucidef_set_led_default "health" "status:green:health" "1"
|
|
ucidef_set_led_default "fault" "status:orange:fault" "1"
|
|
;;
|
|
"Cloud Engines Pogoplug E02")
|
|
ucidef_set_led_default "health" "status:green:health" "1"
|
|
ucidef_set_led_default "fault" "status:orange:fault" "1"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
ucidef_commit_leds
|
|
|
|
exit 0
|
|
|