mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-02-20 19:33:01 +01:00
8 lines
233 B
Text
8 lines
233 B
Text
if [ "$STATUS" == "up" ]; then
|
|
ubus call led.dsl set '{"state":"ok"}'
|
|
elif [ "$STATUS" == "down" ]; then
|
|
ubus call led.dsl set '{"state":"off"}'
|
|
elif [ "$STATUS" == "training" ]; then
|
|
ubus call led.dsl set '{"state":"alert"}'
|
|
fi
|
|
|