Your message dated Wed, 5 Jul 2006 02:51:35 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Closed in version 1:3.2.1-26
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: tiger
Version: 1:3.2.1-24
/usr/lib/tiger/scripts/check_system reports users that don't have password aging
enabled even if they don't have a password. The checks for password aging are
performed by /usr/lib/tiger/systems/Linux/2/check_passwdspec. The false warning
occurs if there are users that have names which are a substring of the name of
another user. That way "grep $user /etc/passwd" returns more than one line and
confuses the script. The patch below fixes the problem (on my machine).
--- /usr/lib/tiger/systems/Linux/2/check_passwdspec.bak 2006-05-02
03:15:05.000000000 +0200
+++ /usr/lib/tiger/systems/Linux/2/check_passwdspec 2006-05-02
03:15:10.000000000 +0200
@@ -90,7 +90,7 @@ IFS=:
# For expiration, pull the password string from /etc/shadow if it exists
[ -r /etc/shadow ] && {
- pwd=`$GREP $user /etc/shadow | $CUT -d: -f2`
+ pwd=`$GREP ^$user: /etc/shadow | $CUT -d: -f2`
}
# Skip this check if the user account is locked
[ "$pwd" != '!' ] && [ "$pwd" != '*' ] && {
--- End Message ---
--- Begin Message ---
Version: 1:3.2.1-26
This bug was actually closed a long time ago, the relevant changelog in the
check_passwdspec says:
# 05/14/2005 jfs - Patch from Nicolas François which checks the user strictly
This fix is only available, however, for etch and sid users.
Javier
signature.asc
Description: Digital signature
--- End Message ---