From: Jo-Philipp Wich Date: Wed, 12 May 2021 10:44:32 +0000 (+0200) Subject: base-files: shinit: properly handle dashes in service names X-Git-Url: http://git.openwrt.org/openwrt/feeds.git?p=openwrt%2Fstaging%2Fzorun.git;a=commitdiff_plain;h=75ea878d1ba05610121a732dc0abf7c914e83ca1 base-files: shinit: properly handle dashes in service names Fixes: FS#3801 Signed-off-by: Jo-Philipp Wich --- diff --git a/package/base-files/files/etc/shinit b/package/base-files/files/etc/shinit index 0a1ebcc832..6b682d8769 100644 --- a/package/base-files/files/etc/shinit +++ b/package/base-files/files/etc/shinit @@ -22,7 +22,7 @@ service() { printf "%-30s\t%10s\t%10s\n" "$F" \ $( $($F enabled) && echo "enabled" || echo "disabled" ) \ $( [ "$(ubus call service list "{ 'verbose': true, 'name': '$(basename $F)' }" \ - | jsonfilter -q -e "@.$(basename $F).instances[*].running" | uniq)" = "true" ] \ + | jsonfilter -q -e "@['$(basename $F)'].instances[*].running" | uniq)" = "true" ] \ && echo "running" || echo "stopped" ) done; return 1