mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
Removed incorrect process name from list, enable --full as it is required for matching jitterentropy-rngd
This commit is contained in:
parent
dcddfdb6cc
commit
7bba7bd4af
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue