Your message dated Sat, 07 Aug 2010 17:33:54 +0000
with message-id <e1ohnho-0005fv...@franck.debian.org>
and subject line Bug#592076: fixed in grub2 1.98+20100804-2
has caused the Debian Bug report #592076,
regarding zz-update-grub not available during upgrade
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 ow...@bugs.debian.org
immediately.)
--
592076: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592076
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: grub-pc
Version: 1.98+20100804-1
Severity: serious
During upgrade of the kernel, the kernel postrm runs stuff in
/etc/kernel/postrm.d. This directory contains a symlink
zz-update-grub to ../postinst.d/zz-update-grub
However, if grub is also being updated during the same apt run, this
file ../postinst.d/zz-update-grub is renamed to
zz-update-grub.dpkg-new, so the run-parts in the kernel's postrm
fails:
Preparing to replace linux-image-2.6.32-5-amd64 2.6.32-18 (using
.../linux-image-2.6.32-5-amd64_2.6.32-19_amd64.deb) ...
Examining /etc/kernel/preinst.d/
Unpacking replacement linux-image-2.6.32-5-amd64 ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 2.6.32-5-amd64
/boot/vmlinuz-2.6.32-5-amd64
run-parts: failed to stat component /etc/kernel/postrm.d/zz-update-grub: No
such file or directory
Failed to process /etc/kernel/postrm.d at
/var/lib/dpkg/info/linux-image-2.6.32-5-amd64.postrm line 234.
dpkg: warning: subprocess old post-removal script returned error exit status 1
So either grub-pc needs to make sure that the symlink is updated during
upgrades, or run-parts needs to ignore symlinks with a non-existing target.
-- Package-specific info:
*********************** BEGIN /proc/mounts
/dev/disk/by-uuid/baaec030-c0e7-45db-a0cf-61e3f340cae2 / ext3
rw,noatime,errors=remount-ro,data=ordered 0 0
/dev/sda9 /boot ext3 rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-usr /usr ext3 rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-local /usr/local ext3
rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-home /home ext3 rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-var /var ext3 rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-aptcache /var/cache/apt ext3
rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-pbuilder /var/cache/pbuilder ext3
rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-ccache /var/cache/ccache ext3
rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-usercache /var/cache/users ext3
rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-scratch /scratch ext3
rw,noatime,errors=continue,data=ordered 0 0
/dev/mapper/eleanor-aptcache /var/cache/pbuilder/aptcache ext3
rw,noatime,errors=continue,data=ordered 0 0
/dev/sr0 /media/DragonAge_ iso9660
ro,nosuid,nodev,relatime,uid=1000,gid=1000,iocharset=utf8,mode=0400,dmode=0500
0 0
*********************** END /proc/mounts
*********************** BEGIN /boot/grub/device.map
(hd0) /dev/disk/by-id/ata-ST3160023AS_3JS3Q4W2
(hd1) /dev/disk/by-id/ata-ST3250820A_5QE5FBB8
*********************** END /boot/grub/device.map
*********************** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
}
terminal_input console
terminal_output console
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.30-rc3' --class debian --class
gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set f7e3eb59-64b2-4c2c-b124-a9914a5a48be
echo 'Loading Linux 2.6.30-rc3 ...'
linux /vmlinuz-2.6.30-rc3 root=/dev/sda5 ro resume=swap:/dev/sda8
quiet
}
menuentry 'Debian GNU/Linux, with Linux 2.6.30-rc3 (recovery mode)' --class
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set f7e3eb59-64b2-4c2c-b124-a9914a5a48be
echo 'Loading Linux 2.6.30-rc3 ...'
linux /vmlinuz-2.6.30-rc3 root=/dev/sda5 ro single
resume=swap:/dev/sda8
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set f7e3eb59-64b2-4c2c-b124-a9914a5a48be
linux16 /memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set f7e3eb59-64b2-4c2c-b124-a9914a5a48be
linux16 /memtest86+.bin console=ttyS0,115200n8
}
menuentry "Memory test (memtest86+, experimental multiboot)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set f7e3eb59-64b2-4c2c-b124-a9914a5a48be
multiboot /memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200, experimental
multiboot)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set f7e3eb59-64b2-4c2c-b124-a9914a5a48be
multiboot /memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows 7 (loader) (on /dev/sdb1)" {
insmod part_msdos
insmod ntfs
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set dce813bae813923e
chainloader +1
}
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*********************** END /boot/grub/grub.cfg
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages grub-pc depends on:
ii debconf [debconf-2.0] 1.5.34 Debian configuration management sy
ii grub-common 1.98+20100804-1 GRand Unified Bootloader, version
ii libc6 2.11.2-2 Embedded GNU C Library: Shared lib
ii libdevmapper1.02.1 2:1.02.48-2 The Linux Kernel Device Mapper use
ii ucf 3.0025 Update Configuration File: preserv
grub-pc recommends no packages.
Versions of packages grub-pc suggests:
ii desktop-base 5.0.5 common files for the Debian Deskto
-- debconf information excluded
--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 1.98+20100804-2
We believe that the bug you reported is fixed in the latest version of
grub2, which is due to be installed in the Debian FTP archive:
grub-common_1.98+20100804-2_i386.deb
to main/g/grub2/grub-common_1.98+20100804-2_i386.deb
grub-coreboot_1.98+20100804-2_i386.deb
to main/g/grub2/grub-coreboot_1.98+20100804-2_i386.deb
grub-efi-amd64_1.98+20100804-2_i386.deb
to main/g/grub2/grub-efi-amd64_1.98+20100804-2_i386.deb
grub-efi-ia32_1.98+20100804-2_i386.deb
to main/g/grub2/grub-efi-ia32_1.98+20100804-2_i386.deb
grub-efi_1.98+20100804-2_i386.deb
to main/g/grub2/grub-efi_1.98+20100804-2_i386.deb
grub-emu_1.98+20100804-2_i386.deb
to main/g/grub2/grub-emu_1.98+20100804-2_i386.deb
grub-firmware-qemu_1.98+20100804-2_i386.deb
to main/g/grub2/grub-firmware-qemu_1.98+20100804-2_i386.deb
grub-ieee1275_1.98+20100804-2_i386.deb
to main/g/grub2/grub-ieee1275_1.98+20100804-2_i386.deb
grub-linuxbios_1.98+20100804-2_i386.deb
to main/g/grub2/grub-linuxbios_1.98+20100804-2_i386.deb
grub-pc_1.98+20100804-2_i386.deb
to main/g/grub2/grub-pc_1.98+20100804-2_i386.deb
grub-rescue-pc_1.98+20100804-2_i386.deb
to main/g/grub2/grub-rescue-pc_1.98+20100804-2_i386.deb
grub2_1.98+20100804-2.diff.gz
to main/g/grub2/grub2_1.98+20100804-2.diff.gz
grub2_1.98+20100804-2.dsc
to main/g/grub2/grub2_1.98+20100804-2.dsc
grub2_1.98+20100804-2_i386.deb
to main/g/grub2/grub2_1.98+20100804-2_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 592...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Colin Watson <cjwat...@debian.org> (supplier of updated grub2 package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Sat, 07 Aug 2010 17:53:34 +0100
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub-emu grub-pc
grub-rescue-pc grub-coreboot grub-efi-ia32 grub-efi-amd64 grub-ieee1275
grub-firmware-qemu grub-yeeloong
Architecture: source i386
Version: 1.98+20100804-2
Distribution: unstable
Urgency: low
Maintainer: GRUB Maintainers <pkg-grub-de...@lists.alioth.debian.org>
Changed-By: Colin Watson <cjwat...@debian.org>
Description:
grub-common - GRand Unified Bootloader, version 2 (common files)
grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
grub-efi - GRand Unified Bootloader, version 2 (dummy package)
grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
grub-emu - GRand Unified Bootloader, version 2 (emulated version)
grub-firmware-qemu - GRUB firmware image for QEMU
grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
grub-pc - GRand Unified Bootloader, version 2 (PC/BIOS version)
grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
grub2 - GRand Unified Bootloader, version 2 (dummy package)
Closes: 591569 592076
Changes:
grub2 (1.98+20100804-2) unstable; urgency=low
.
[ Colin Watson ]
* Make /etc/kernel/postrm.d/zz-update-grub a real file rather than a
symlink (closes: #592076).
.
[ Updated translations ]
* Norwegian Bokmål (nb.po) by Hans Nordhaug (closes: #591569).
Checksums-Sha1:
8cbc8586be049a3d5401630928d50a73f6e350cd 2888 grub2_1.98+20100804-2.dsc
2a21711d6bec32684c89bf58ee9c965d05604ceb 452531 grub2_1.98+20100804-2.diff.gz
af3dce73d95186f184c5da4817dee8f58a4c251c 280770 grub2_1.98+20100804-2_i386.deb
8fe723e498e7cc1da743c274656d628efe7cf120 279496
grub-linuxbios_1.98+20100804-2_i386.deb
7007ffd9b862c54346ba1ba8df99ea13763b166f 279502
grub-efi_1.98+20100804-2_i386.deb
e076a3632732e4c7b66755597bc25ecb9266092e 1771486
grub-common_1.98+20100804-2_i386.deb
15abaf12191c327bbb26b27d1beec5f64e4dad32 2776892
grub-emu_1.98+20100804-2_i386.deb
325511d8731fe28a7f09bbc7e027c79757e90333 1005346
grub-pc_1.98+20100804-2_i386.deb
a38352ba740331e731e49244df8a0ff4c06cda5a 1470016
grub-rescue-pc_1.98+20100804-2_i386.deb
40d3b1a755005120b30adcf35618fe90fe076ec6 772294
grub-coreboot_1.98+20100804-2_i386.deb
0e3a16c31f94b0305012e65ed4ddeea7f4b02b08 806496
grub-efi-ia32_1.98+20100804-2_i386.deb
efee120fdf68611aca4212adbe727129fc86efa8 882024
grub-efi-amd64_1.98+20100804-2_i386.deb
6e0d72134cdbccf8c9fd34e36b5978375f6cc3cb 763452
grub-ieee1275_1.98+20100804-2_i386.deb
71f2727045f1e2446f6be3afc30077961d45ff31 706852
grub-firmware-qemu_1.98+20100804-2_i386.deb
Checksums-Sha256:
6c951e4906c30e22932cbceafe1cc63847e0122d4da314138c063662be23b20e 2888
grub2_1.98+20100804-2.dsc
8214f0b0ec43c5a47a09624857730e1b5921d0987c7ef8eb5379ae1241d25c1e 452531
grub2_1.98+20100804-2.diff.gz
5989ac60702dd3f9f6405796e44d1907b930a1a94a09c9c8fe71e8d7814f1dfe 280770
grub2_1.98+20100804-2_i386.deb
eaf211068faeb6aef773ac917c660707311a6d14167203d6c9370803d93c5cf4 279496
grub-linuxbios_1.98+20100804-2_i386.deb
63e878d020ea7a018404c2b060c375def1aab3a39ad0710925a997bec8a70e86 279502
grub-efi_1.98+20100804-2_i386.deb
968de10509ae8465bcf8bca3e37cb11be6ddb32fbae96bbcb8e7043145d858f3 1771486
grub-common_1.98+20100804-2_i386.deb
738ad9a324fd21f67a1215945d52cb92ecc5e544981a8f1a0460c68e3db124e9 2776892
grub-emu_1.98+20100804-2_i386.deb
cc570de0b25d5cd12521f834f85255d4cca6a9452c888252233547aef6017210 1005346
grub-pc_1.98+20100804-2_i386.deb
8dbdddad834d395db2858780e883f6bfb5d0b776ffbda994e2dbd5f1bc58e62d 1470016
grub-rescue-pc_1.98+20100804-2_i386.deb
6576369ff9e40a1d32209d8449dd34107d66651528efc1704b0511b80644fc6f 772294
grub-coreboot_1.98+20100804-2_i386.deb
ea3185d4a2103da1a5ab796f12a769f28e706ced9b20e2f04f1601f2f4d82ccf 806496
grub-efi-ia32_1.98+20100804-2_i386.deb
cfa485663ecd64a47ca71dcd8ff3d67569b3b317ca5d60ea194b2e4dbe34887e 882024
grub-efi-amd64_1.98+20100804-2_i386.deb
54decdb25fce7bffd94651c7ca36f30bfeabb71b8977b7aeb9b0963d1080e768 763452
grub-ieee1275_1.98+20100804-2_i386.deb
faaca24ad887ae5d6f9c02cf46530620db6bf1ced262180d7bca675c3bd4730e 706852
grub-firmware-qemu_1.98+20100804-2_i386.deb
Files:
70f5ec3d8ee63fd6edbb1d31891556e3 2888 admin extra grub2_1.98+20100804-2.dsc
036498c1e66c27dbd343a57f9d487734 452531 admin extra
grub2_1.98+20100804-2.diff.gz
c1bc279e26d7624b4be959ea2ae29e97 280770 admin extra
grub2_1.98+20100804-2_i386.deb
911f43cf8236a4296dd9aac9c4998c47 279496 admin extra
grub-linuxbios_1.98+20100804-2_i386.deb
e9e2040faff57d3d60469d136b3fe9c8 279502 admin extra
grub-efi_1.98+20100804-2_i386.deb
1facfb3259b1931305f7443a5e422187 1771486 admin optional
grub-common_1.98+20100804-2_i386.deb
30b0cbab32f3c48ccf74147cff0cd115 2776892 admin extra
grub-emu_1.98+20100804-2_i386.deb
a4e6ca2257276a61179f85351868f276 1005346 admin optional
grub-pc_1.98+20100804-2_i386.deb
386413e2bc99692c8845b6884aaf4090 1470016 admin extra
grub-rescue-pc_1.98+20100804-2_i386.deb
5219d04f275e0b313f031d90aef1a283 772294 admin extra
grub-coreboot_1.98+20100804-2_i386.deb
0aba470f60b65523afdb1a818b2faa25 806496 admin extra
grub-efi-ia32_1.98+20100804-2_i386.deb
30133518571e68a7e60fba7d94036bb0 882024 admin extra
grub-efi-amd64_1.98+20100804-2_i386.deb
441b9b4b7d0b2e964802ce7ad715becf 763452 admin extra
grub-ieee1275_1.98+20100804-2_i386.deb
63b8caf7378d0bec9ec6b0663e91d9cc 706852 admin extra
grub-firmware-qemu_1.98+20100804-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Colin Watson <cjwat...@debian.org> -- Debian developer
iQIVAwUBTF2UNDk1h9l9hlALAQixbhAAnYoec1x9aNqWYQciDlnFF3qv4nuOqyNC
D9Y+5nWUfF6C4AtBh39lFK6TRoDMEtGxZ0OLKPeUtx/IcFvGSB/roCVkwFpgEubq
3XdqNIUJRgnENaYOJQMnr5Ubdp3v4lpgy68D15KU6jxTEBruK3usIB8zOSbBErD4
gnVURd9EnTjLaAr0k1kPFB1rwUQ8hlo/LWVeNBAgANdsdkARxuq3AHXk9P/FRIPZ
cFg+n/35Km3YXDezweGW4j3puL14t/OssPZA/nRagvltrbiOuATWPj4Kg2UkDBOC
mgshkVQYVlylNaqA0NCnXykgXkMwUh5sFKw4z7FjXwj75v/mcIQ6ByHjnRNPLBBa
t44ZLmqp9BwTrKwGRLnVZ+qSbAWBHhzYuXxGmAnU6+tvy14losLmnlA6ML1sSBhD
nL5IY0sTt0Go+8H9GR8Wh0/8Of6qOLA0bR4CCfLFXh1HCTaCXy4/8wnKYi5EHMi5
QInvlFv41hc/PcgWOmhhMSaDRA++6j8NieKnR0NPLxNhSWcpSjrXalKnZTwGXE2O
6vpFJYHQ89o0rmr9o0shQKVPGUoVDRaW1l/tzx8qkBkDJGp56fqd7caQPFQ0nch5
pyuTSbaO2bH8VL5ls9P5HgZQCtdlVKzUAjxnE3BfhaaNrbhtFiXGMCflVQeMzMde
ZT8OVDlUmzE=
=kUio
-----END PGP SIGNATURE-----
--- End Message ---