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