Package: tiger
Version: 1:3.2.2-7.1
Severity: normal
Tags: patch
The attached patch fixes a bashism (== in an if condition) in
Linux/2/gen_mounts.
Francois
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.27.5-grsec (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_CA.UTF-8, LC_CTYPE=fr_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages tiger depends on:
ii binutils 2.18.1~cvs20080103-7 The GNU assembler, linker and bina
ii bsdmainutils 6.1.10 collection of more utilities from
ii debconf [debconf-2. 1.5.24 Debian configuration management sy
ii diff 2.8.1-12 File comparison utilities
ii libc6 2.7-16 GNU C Library: Shared libraries
ii net-tools 1.60-21 The NET-3 networking toolkit
ii ucf 3.0010 Update Configuration File: preserv
Versions of packages tiger recommends:
ii chkrootkit 0.48-5 rootkit detector
ii exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon
pn john <none> (no description available)
Versions of packages tiger suggests:
ii lsof 4.78.dfsg.1-4 List open files
-- debconf information:
* tiger/mail_rcpt: root
tiger/remove_mess: true
* tiger/policy_adapt:
--- /tmp/gen_mounts.orig 2008-11-17 16:10:46.000000000 +1300
+++ 2/gen_mounts 2008-11-17 16:11:10.000000000 +1300
@@ -208,7 +208,7 @@
# The rest we warn about
if [ "$LOCAL" -eq 2 ] ; then
- if [ -z "$Tiger_FSScan_WarnUnknown" ] || [ "$Tiger_FSScan_WarnUnknown" ==
"Y" ] ; then
+ if [ -z "$Tiger_FSScan_WarnUnknown" ] || [ "$Tiger_FSScan_WarnUnknown" =
"Y" ] ; then
echo "--CONFIG-- [con010c] Filesystem '$1' used by '$2' is not
recognised as a valid filesystem" >&2
fi
LOCAL=1