Your message dated Mon, 30 Jun 2008 20:26:09 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: [Pkg-cryptsetup-devel] Bug#488266: cryptsetup: use the 
correct destination in the cryptroot initramfs hook
has caused the Debian Bug report #488266,
regarding cryptsetup: use the correct destination in the cryptroot initramfs 
hook
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.)


-- 
488266: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488266
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: cryptsetup
Version: 2:1.0.6-2
Severity: normal
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu intrepid ubuntu-patch

Hi,

I'm not fully sure this affects Debian, as it seems like it is pretty
important, and something that would be noticed. However, in my
investigations I couldn't find a reason why it wouldn't, so I
am forwarding it to be sure.

The cryptroot initramfs-hook seems to copy the cryptsetup, dmsetup
and askpass binaries to the wrong location due to a missing second
argument. The following patch from Kjell Braden fixes this, please
consider applying it.

I also noticed that debian/initramfs/cryptopenct-hook also uses
copy_exec with no second argument in several places, so if this
is a bug then that hook should be checked as well.

Thanks,

James


diff -pruN 2:1.0.6-2/debian/initramfs/cryptroot-hook
2:1.0.6-2ubuntu7/debian/initramfs/cryptroot-hook
--- 2:1.0.6-2/debian/initramfs/cryptroot-hook   2008-06-20 22:19:57.000000000 
+0100
+++ 2:1.0.6-2ubuntu7/debian/initramfs/cryptroot-hook    2008-06-20 
22:16:41.000000000 +0100
@@ -478,9 +478,10 @@ if [ "$MODULES" != "dep" ] || [ "$setup"
                manual_add_modules $mod
        done
 
-       copy_exec /sbin/cryptsetup
-       copy_exec /sbin/dmsetup
-       copy_exec /lib/cryptsetup/askpass
+       copy_exec /sbin/cryptsetup /sbin
+       copy_exec /sbin/dmsetup /sbin
+       mkdir -p $DESTDIR/lib/cryptsetup
+       copy_exec /lib/cryptsetup/askpass /lib/cryptsetup/
 fi
 
 exit 0




--- End Message ---
--- Begin Message ---
Version: 2:1.0.6-2

Closing this BR as the hooks work as expected with recent initramfs-tools.


--- End Message ---

Reply via email to