mirror of https://github.com/CISOfy/lynis.git
Fix: show 'egrep' instead of 'grep' when egrep is missing
This commit is contained in:
parent
6755ac45c2
commit
3a03af42aa
|
@ -340,7 +340,7 @@
|
|||
[ "${AWKBINARY:-}" ] || ExitFatal "awk binary not found"
|
||||
[ "${CAT_BINARY:-}" ] || ExitFatal "cat binary not found"
|
||||
[ "${CUTBINARY:-}" ] || ExitFatal "cut binary not found"
|
||||
[ "${EGREPBINARY:-}" ] || ExitFatal "grep binary not found"
|
||||
[ "${EGREPBINARY:-}" ] || ExitFatal "egrep binary not found"
|
||||
[ "${FINDBINARY:-}" ] || ExitFatal "find binary not found"
|
||||
[ "${GREPBINARY:-}" ] || ExitFatal "grep binary not found"
|
||||
[ "${HEADBINARY:-}" ] || ExitFatal "head binary not found"
|
||||
|
|
Loading…
Reference in New Issue