diff --git a/Jenkins/stop.sh b/Jenkins/stop.sh index 3a6a761..b075404 100755 --- a/Jenkins/stop.sh +++ b/Jenkins/stop.sh @@ -1,2 +1,5 @@ if [ -f .pidfile ]; then - kill $(cat .pidfile) \ No newline at end of file + for pid in $(cat .pidfile); do + kill $pid + echo "Killed $pid" + done \ No newline at end of file