From fe5850bb2f607502872b6c42aadf151c8214a20a Mon Sep 17 00:00:00 2001 From: kx1t Date: Fri, 5 May 2023 14:46:59 -0400 Subject: [PATCH] linter fix --- rootfs/etc/services.d/mlat-client/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/etc/services.d/mlat-client/run b/rootfs/etc/services.d/mlat-client/run index 8309710..d5ffaaa 100644 --- a/rootfs/etc/services.d/mlat-client/run +++ b/rootfs/etc/services.d/mlat-client/run @@ -17,7 +17,7 @@ # If not, see . #--------------------------------------------------------------------------------------------- -trap "pkill -P $$ || true; s6wrap --quiet --timestamps --prepend=mlat-client --args echo 'service stopping'; exit 0" SIGTERM SIGINT SIGHUP SIGQUIT +trap 'pkill -P "$$" || true; s6wrap --quiet --timestamps --prepend=mlat-client --args echo "service stopping"; exit 0' SIGTERM SIGINT SIGHUP SIGQUIT APPNAME="mlat-client" s6wrap=(s6wrap --quiet --timestamps --prepend="${APPNAME}")