Hello All,
I have got my guruplug server since this summer and I really wants to turn off all the leds (green).
I've executed as root a script with theses lines, no error from shell but leds are still green !
#!/bin/sh
echo "none" > /sys/class/leds/plug2\:green\:health/trigger
echo "none" > /sys/class/leds/plug2\:green\:wmode/trigger
echo 0 > `eval ls /sys/class/leds/*plug*\:green\:health/brightness`
echo 0 > `eval ls /sys/class/leds/*plug*\:green\:wmode/brightness`
How can I switch off all the lights ?