test: properly kill journalctl

sudo journalctl -af -n 1 -u "${WORKER_UNIT}" &
WORKER_JOURNAL_PID=$!

In this snippet, WORKER_JOURNAL_PID is set to the PID of the sudo process.
Sudo doesn't propagate any signals - therefore the child process of sudo
(journalctl in this case) isn't killed when a signal is sent to the parent.

Use pkill -P instead which kills all processes where sudo is the parent.

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2021-03-26 07:43:31 +01:00 committed by Ondřej Budai
parent 8f91e236f8
commit e7b3063f7e
5 changed files with 5 additions and 5 deletions

View file

@ -201,7 +201,7 @@ if [[ $COMPOSE_STATUS != FINISHED ]]; then
fi
# Stop watching the worker journal.
sudo kill ${WORKER_JOURNAL_PID}
sudo pkill -P ${WORKER_JOURNAL_PID}
# Download the image.
greenprint "📥 Downloading the image"