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>2021-07-20 12:31:18 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2021-07-20 12:31:18 +0300
commit3a03af42aa0464f4fc54e8e99dee5115dc0ed77d (patch)
treefccb41be45f700513e8152736f963d9aebaed13d /include/binaries
parent6755ac45c24f1e473907af0ebba3f17117592ec4 (diff)
Fix: show 'egrep' instead of 'grep' when egrep is missing
Diffstat (limited to 'include/binaries')
-rw-r--r--include/binaries2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/binaries b/include/binaries
index f5054c88..fb8147ce 100644
--- a/include/binaries
+++ b/include/binaries
@@ -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"