From 7bba7bd4af22a959a1a058e76bb4689f748491a6 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Mon, 23 Mar 2020 16:13:39 +0100 Subject: [PATCH] Removed incorrect process name from list, enable --full as it is required for matching jitterentropy-rngd --- include/tests_crypto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/tests_crypto b/include/tests_crypto index 09507aac..466f6b52 100644 --- a/include/tests_crypto +++ b/include/tests_crypto @@ -230,8 +230,9 @@ if [ ${SKIPTEST} -eq 0 ]; then LogText "Test: looking for software pseudo random number generators" FOUND="" - for SERVICE in audio-entropyd havegd haveged jitterentropy-rngd; do - if IsRunning "${SERVICE}"; then + for SERVICE in audio-entropyd haveged jitterentropy-rngd; do + # Using --full as jitterentropy-rngd would otherwise not match + if IsRunning --full "${SERVICE}"; then FOUND="${FOUND} ${SERVICE}" fi done