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:
Diffstat (limited to 'include/tests_logging')
-rw-r--r--include/tests_logging8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/tests_logging b/include/tests_logging
index a5f74a74..a7f883a8 100644
--- a/include/tests_logging
+++ b/include/tests_logging
@@ -477,6 +477,14 @@
LogText "Test: checking deleted files that are still in use"
LSOF_GREP="WARNING|Output information"
+
+ EARLY_MYSQL=`dpkg -l | egrep mysql-server-5.[0-5]`
+
+ if [ ! "${EARLY_MYSQL}" = "" ]; then
+ # MySQL versions prior to 5.6 leave lots of deleted in-use files in /tmp
+ LSOF_GREP="${LSOF_GREP}|mysqld"
+ fi
+
if [ ${GRSEC_FOUND} -eq 1 ]; then
# grsecurity causes Fail2Ban to hold onto deleted in-use files in /var/tmp
LSOF_GREP="${LSOF_GREP}|fail2ban"