From c879dc1d098d59e43cdb2a1792a4841d0178b82d Mon Sep 17 00:00:00 2001 From: Joo Aun Saw Date: Mon, 25 Mar 2019 11:17:24 +1100 Subject: [PATCH] streameye rpi1: revert unintended stop cmd change --- board/raspberrypi/overlay/usr/bin/streameye.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/raspberrypi/overlay/usr/bin/streameye.sh b/board/raspberrypi/overlay/usr/bin/streameye.sh index 11710401dc..81c0feac2c 100755 --- a/board/raspberrypi/overlay/usr/bin/streameye.sh +++ b/board/raspberrypi/overlay/usr/bin/streameye.sh @@ -231,7 +231,7 @@ function start() { function stop() { # stop the streameye background watch process - ps | grep streameye.sh | grep -v $$ | grep -v grep | tr -s ' ' | sed -e 's/^\s//' | cut -d ' ' -f 1 | xargs -r kill + ps | grep streameye.sh | grep -v $$ | grep -v S94streameye| grep -v grep | tr -s ' ' | sed -e 's/^\s//' | cut -d ' ' -f 1 | xargs -r kill # stop the raspimjpeg process raspimjpeg_pid=$(ps | grep raspimjpeg.py | grep -v grep | tr -s ' ' | sed -e 's/^\s//' | cut -d ' ' -f 1)