From 869ff80d312d5ef64f84eb22a0906f80e614f706 Mon Sep 17 00:00:00 2001 From: Robinson Wu Date: Tue, 4 Jun 2019 11:13:39 +0800 Subject: [PATCH] base-files: fix uci led oneshot/timer trigger This patch adds a missing type property. This fixes the creation of oneshot and timer led triggers like: | ucidef_set_led_timer "system" "system" "zhuotk:green:system" "1000" "1000" from /etc/init.d/01_leds. Fixes: b06a286a4861 ("base-files: cleanup led functions in uci-defaults.sh") Signed-off-by: Robinson Wu Signed-off-by: Christian Lamparter --- package/base-files/files/lib/functions/uci-defaults.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/package/base-files/files/lib/functions/uci-defaults.sh b/package/base-files/files/lib/functions/uci-defaults.sh index 1d57de5a70f3..2fb755596985 100755 --- a/package/base-files/files/lib/functions/uci-defaults.sh +++ b/package/base-files/files/lib/functions/uci-defaults.sh @@ -476,6 +476,7 @@ _ucidef_set_led_timer() { _ucidef_set_led_common "$1" "$2" "$3" + json_add_string type "$trigger_name" json_add_string trigger "$trigger_name" json_add_int delayon "$delayon" json_add_int delayoff "$delayoff" -- 2.30.2