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>2019-07-14 13:18:22 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-07-14 13:18:22 +0300
commit96434508d40fe1d86f67874682645511b739b6ed (patch)
treefe3794981c446ddca534930c139b930f6dbe9e41 /include/binaries
parentba32b1a001b703fe99fcf74da80816ac31245a74 (diff)
Disable testing for other tools, as xxd is not present on all systems by default
Diffstat (limited to 'include/binaries')
-rw-r--r--include/binaries11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/binaries b/include/binaries
index d894caf9..0fbefe46 100644
--- a/include/binaries
+++ b/include/binaries
@@ -304,12 +304,11 @@
[ "${WCBINARY:-}" ] || ExitFatal "wc binary not found"
# Test a few other tools that we did not specifically define (yet)
- TOOLS="xxd"
- for T in ${TOOLS}; do
- DATA=$(type ${T})
- if [ $? -gt 0 ]; then ExitFatal "${T} binary not found"; fi
- done
-
+ #TOOLS="xxd"
+ #for T in ${TOOLS}; do
+ # DATA=$(type ${T})
+ # if [ $? -gt 0 ]; then ExitFatal "${T} binary not found"; fi
+ #done
else
LogText "Result: checking of binaries skipped in this mode"