Package: tiger
Version: 1:3.2.1-35
Severity: normal
If one uses encfs to mount an encrypted filesystem, you get [con010c]
reported every couple of hours. The exact message is
--CONFIG-- [con010c] Filesystem 'fuse' used by 'encfs' is not
recognised as a local filesystem
Adding
Filesystem 'fuse' used by 'encfs' is not recognised as a local filesystem
to /etc/tiger/tiger.ignore does not suppress this, but it should. (You
also get the problem if you use sshfs or another fuse filesystem.)
The cause of this is /usr/lib/tiger/systems/Linux/2/gen_mounts not using
the usual "message" function to generate the con010c thing---instead it
just echo's it. Seems quite a lot of tiger does this, which seems wrong
to me, but perhaps there is some reason?
For now, I just modified /usr/lib/tiger/systems/Linux/2/gen_mounts in
the following ugly way (sorry, no patch since it seems i deleted
the original)
# 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
-- System Information:
Debian Release: 4.0
APT prefers stable
APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Versions of packages tiger depends on:
ii binutils 2.17-3 The GNU assembler, linker and bina
ii coreutils 5.97-5.3 The GNU core utilities
ii debconf [debconf-2.0] 1.5.11 Debian configuration management sy
ii diff 2.8.1-11 File comparison utilities
ii libc6 2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii net-tools 1.60-17 The NET-3 networking toolkit
Versions of packages tiger recommends:
ii chkrootkit 0.47-1.1 Checks for signs of rootkits on th
ii exim4-daemon-light [mail-tran 4.63-17 lightweight exim MTA (v4) daemon
pn john <none> (no description available)
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]