mirror of https://github.com/CISOfy/lynis.git
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
|
@ -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 New Issue