From a2c91cb2cb4e34af5c54e600ded28592e836f166 Mon Sep 17 00:00:00 2001 From: Starkstromkonsument Date: Sun, 4 Feb 2024 23:51:00 +0100 Subject: [PATCH] LED1: replace ON with heartbeat (sAbAj) --- src/opnsense/scripts/apuled/apuledctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/scripts/apuled/apuledctl b/src/opnsense/scripts/apuled/apuledctl index 4952588..c2abfa0 100644 --- a/src/opnsense/scripts/apuled/apuledctl +++ b/src/opnsense/scripts/apuled/apuledctl @@ -71,7 +71,7 @@ CHK_IDLE=$(vmstat 1 2 | tail -1 | awk '{ print $19 }') if [ "$CHK_IDLE" -lt "10" ];then echo "f4" > $LED1 else - echo "1" > $LED1 + echo "sAbAj" > $LED1 fi }