Skip to content
Snippets Groups Projects
Commit 53dcb0d4 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #2800: prevent unnecessary warnings

parent f2af602a
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ function stop() { ...@@ -32,7 +32,7 @@ function stop() {
alarm 10 gracefullyStopBGProcessing.sh alarm 10 gracefullyStopBGProcessing.sh
# ungraceful exit # ungraceful exit
[ -e /proc/$PID ] && kill -15 "$PID" && (sleep 2; kill -9 "$PID") [ -e /proc/$PID ] && kill -15 "$PID" && (sleep 2; [ -e /proc/$PID ] && kill -9 "$PID")
} }
. controller.sh . controller.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment