#1043401 tiger: Message 'con010c' cannot be overriden by tiger.ignore

Package:
tiger
Source:
tiger
Description:
security auditing and intrusion detection tools for Linux
Submitter:
Michel Verdier
Date:
2023-08-10 07:33:04 UTC
Severity:
normal
#1043401#5
Date:
2023-08-10 07:22:31 UTC
From:
To:
Dear Maintainer,

Bug #449439 is closed in 2007 for tiger 3.2.2-1

The message
--CONFIG-- [con010c] Filesystem '...' used by '...' is not recognised as a valid filesystem
cannot be filtered in /etc/tiger/tiger.ignore

But the patch seems to be missing in 3.2.4~rc1
/usr/lib/tiger/systems/Linux/2/gen_mounts:358

 # The rest we warn about
 if [ "$LOCAL" -eq 2 ] ; then
-     echo "--CONFIG-- [con010c] Filesystem '$1' used by '$2' is not recognised as a local filesystem" >&2
+     local msg="Filesystem '$1' used by '$2' is not recognised as a local filesystem"
+     # possibly ignore $msg using tiger.ignore
+     if [ ! -z "$(echo \"$msg\" | egrep -v -f /etc/tiger/tiger.ignore)" ]; then
+        echo "--CONFIG-- [con010c] $msg" >&2
+     fi
     LOCAL=1
 fi