mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
7 lines
232 B
Text
7 lines
232 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
|