Your message dated Wed, 28 Dec 2011 00:07:43 +0000
with message-id <[email protected]>
and subject line Bug#653172: Removed package(s) from unstable
has caused the Debian Bug report #422149,
regarding autofs-ldap hangs for 30 seconds with action on a missing directory
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
422149: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=422149
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: autofs-ldap
Version: 4.1.4+debian-1
When attempting to open a file on a missing ldap automount directory,
autofs will hang for 30 seconds before returning error. This can be
recreated on a system with /home automounted via ldap with
cat /home/.missing/badfile
The attached patch resolves the issue.
--- autofs-4.1.4/modules/lookup_ldap.c.orig 2007-01-04 08:49:59.000000000
+0000
+++ autofs-4.1.4/modules/lookup_ldap.c 2007-01-04 08:50:34.000000000 +0000
@@ -617,10 +617,8 @@ int lookup_mount(const char *root, const
me = cache_lookup_first();
t_last_read = me ? now - me->age : ap.exp_runfreq + 1;
- if (t_last_read > ap.exp_runfreq)
- if ((ret & (CHE_MISSING | CHE_UPDATED)) &&
- (ret2 & (CHE_MISSING | CHE_UPDATED)))
- need_hup = 1;
+ if (t_last_read > ap.exp_runfreq && (ret2 & CHE_UPDATED))
+ need_hup = 1;
if (ret == CHE_MISSING && ret2 == CHE_MISSING) {
int wild = CHE_MISSING;
--- End Message ---
--- Begin Message ---
Version: 4.1.4+debian-3+rm
Dear submitter,
as the package autofs has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see http://bugs.debian.org/653172
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)
--- End Message ---