Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2020-03-23 18:13:39 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2020-03-23 18:13:39 +0300
commit7bba7bd4af22a959a1a058e76bb4689f748491a6 (patch)
tree513180d562997c60f71fc1df80f90157f32b9e8b /include/tests_crypto
parentdcddfdb6cc803b6b7401ff36beaac7501c7e69d7 (diff)
Removed incorrect process name from list, enable --full as it is required for matching jitterentropy-rngd
Diffstat (limited to 'include/tests_crypto')
-rw-r--r--include/tests_crypto5
1 files 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