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>2016-10-28 12:48:20 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-10-28 12:48:20 +0300
commit1cb1fc40ca5188dd3eef37c853fe3a76b22a37f7 (patch)
tree840d7da7c1434843fc59334dd7a2a5f6aa8d656d /include/binaries
parent3bafb7739571303cecd9f60d7f2c4cee187806e7 (diff)
Added more definitions for tools
Diffstat (limited to 'include/binaries')
-rw-r--r--include/binaries6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/binaries b/include/binaries
index 4323d73a..17b269c1 100644
--- a/include/binaries
+++ b/include/binaries
@@ -101,6 +101,9 @@
BLKDBINARY=${BINARY}
LogText " Found known binary: blkid (information about block devices) - ${BINARY}"
;;
+ cat) CAT_BINARY="${BINARY}"
+ LogText " Found known binary: cat (generic file handling) - ${BINARY}"
+ ;;
chkconfig) CHKCONFIGFOUND=1; CHKCONFIGBINARY=${BINARY}; LogText " Found known binary: chkconfig (administration tool) - ${BINARY}" ;;
clamconf)
CLAMCONF_BINARY=${BINARY}
@@ -133,6 +136,9 @@
g++) GPLUSPLUSFOUND=1; GPLUSPLUSBINARY="${BINARY}"; COMPILER_INSTALLED=1; LogText " Found known binary: g++ (compiler) - ${BINARY}" ;;
# additional file check due to existance /usr/libexec/gcc (directory)
gcc) if [ -f ${BINARY} ]; then GCCBINARY="${BINARY}"; COMPILER_INSTALLED=1; LogText " Found known binary: gcc (compiler) - ${BINARY}"; fi ;;
+ getent) GETENT_BINARY="${BINARY}"
+ LogText " Found known binary: getent (query tool for name service switch libraries) - ${BINARY}"
+ ;;
grep) GREPFOUND=1; GREPBINARY=${BINARY}; LogText " Found known binary: grep (text search) - ${BINARY}" ;;
grub2-install) GRUB2INSTALLFOUND=1; GRUB2INSTALLBINARY=${BINARY}; LogText " Found known binary: grub2-install (installer for boot loader) - ${BINARY}" ;;
gzip) GZIPFOUND=1; GZIPBINARY="${BINARY}"; LogText " Found known binary: gzip (compressing utility) - ${BINARY}" ;;