Your message dated Fri, 11 Jan 2019 15:52:54 +0000
with message-id <e1ghz78-0003om...@fasolo.debian.org>
and subject line Bug#812574: fixed in grub2 2.02+dfsg1-10
has caused the Debian Bug report #812574,
regarding grub-pc: ucf prompt that wants to change nothing except remove 
admin-defined config
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.)


-- 
812574: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812574
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: grub-pc
Version: 2.02~beta3-1
Severity: important
Justification: Policy §3.9.1

Upgrading GRUB:

Unpacking grub-pc (2.02~beta3-1) over (2.02~beta2-36) ...
[…]
Setting up grub-pc (2.02~beta3-1) ...

Then I get an ucf prompt, and the entire diff is:

Package configuration

            ┌─────────────────────────────┤ Configuring grub-pc 
├─────────────────────────────┐
            │                                                                   
              │
            │ Line by line differences between versions                         
              │
            │                                                                   
              │
            │ --- /etc/default/grub root.root 0644 2016-04-21 15:08:07          
              │
            │ +++ /tmp/grub.Z2QbwNev1k root.root 0644 2016-10-24 07:45:50       
              │
            │ @@ -8,8 +8,6 @@                                                   
              │
            │  GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` 
              │
            │  GRUB_CMDLINE_LINUX_DEFAULT=""                                    
              │
            │  GRUB_CMDLINE_LINUX="net.ifnames=0 kaslr"                         
              │
            │ -GRUB_DISABLE_SUBMENU=y                                           
              │
            │ -GRUB_FONT=/usr/share/grub/FixedMisc.pf2                          
              │
            │                                                                   
              │
            │  # Uncomment to enable BadRAM filtering, modify to suit your 
needs              │
            │  # This works with Linux (no patch required) and with any kernel 
that obtains   │
            │ @@ -25,7 +23,7 @@                                                 
              │
            │  #GRUB_GFXMODE=640x480                                            
              │
            │                                                                   
              │
            │  # Uncomment if you don't want GRUB to pass "root=UUID=xxx" 
parameter to Linux  │
            │ -GRUB_DISABLE_LINUX_UUID=true                                     
              │
            │ +#GRUB_DISABLE_LINUX_UUID=true                                    
              │
            │                                                                   
              │
            │  # Uncomment to disable generation of recovery mode menu entries  
              │
            │  #GRUB_DISABLE_RECOVERY="true"                                    
              │
            │                                                                   
              │
            │                                     <Ok>                          
              │
            │                                                                   
              │
            
└─────────────────────────────────────────────────────────────────────────────────┘


This is *nothing* changed in the base config, and almost *all*
changes the local admin did reverted.

Packages, by policy, “should try to minimize the amount of prompting
they need to do”, and, furthermore, “an upgrade should not ask the same
questions again”. I also expect a package to respect the local admin’s
configuration changes, so this is border-line RC.



-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/vg--ci--busyapps-lv--root / ext4 
rw,noatime,errors=remount-ro,data=ordered 0 0
*********************** END /proc/mounts

*********************** 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
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

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 {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

insmod part_msdos
insmod lvm
insmod ext2
set 
root='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root 
--hint='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
  d27bd1df-7c29-4e4e-a42e-8c230e868733
else
  search --no-floppy --fs-uuid --set=root d27bd1df-7c29-4e4e-a42e-8c230e868733
fi
if loadfont /usr/share/grub/FixedMisc.pf2 ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=5
  fi
fi
### 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 ###
function gfxmode {
        set gfxpayload="${1}"
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Debian GNU/Linux, with Linux 4.7.0-1-amd64' --class debian --class 
gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.7.0-1-amd64-advanced-d27bd1df-7c29-4e4e-a42e-8c230e868733' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod lvm
        insmod ext2
        set 
root='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root 
--hint='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
  d27bd1df-7c29-4e4e-a42e-8c230e868733
        else
          search --no-floppy --fs-uuid --set=root 
d27bd1df-7c29-4e4e-a42e-8c230e868733
        fi
        echo    'Loading Linux 4.7.0-1-amd64 ...'
        linux   /boot/vmlinuz-4.7.0-1-amd64 
root=/dev/mapper/vg--ci--busyapps-lv--root ro net.ifnames=0 kaslr 
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-4.7.0-1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 4.7.0-1-amd64 (recovery mode)' --class 
debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.7.0-1-amd64-recovery-d27bd1df-7c29-4e4e-a42e-8c230e868733' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod lvm
        insmod ext2
        set 
root='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root 
--hint='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
  d27bd1df-7c29-4e4e-a42e-8c230e868733
        else
          search --no-floppy --fs-uuid --set=root 
d27bd1df-7c29-4e4e-a42e-8c230e868733
        fi
        echo    'Loading Linux 4.7.0-1-amd64 ...'
        linux   /boot/vmlinuz-4.7.0-1-amd64 
root=/dev/mapper/vg--ci--busyapps-lv--root ro single net.ifnames=0 kaslr
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-4.7.0-1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 4.6.0-1-amd64' --class debian --class 
gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.6.0-1-amd64-advanced-d27bd1df-7c29-4e4e-a42e-8c230e868733' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod lvm
        insmod ext2
        set 
root='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root 
--hint='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
  d27bd1df-7c29-4e4e-a42e-8c230e868733
        else
          search --no-floppy --fs-uuid --set=root 
d27bd1df-7c29-4e4e-a42e-8c230e868733
        fi
        echo    'Loading Linux 4.6.0-1-amd64 ...'
        linux   /boot/vmlinuz-4.6.0-1-amd64 
root=/dev/mapper/vg--ci--busyapps-lv--root ro net.ifnames=0 kaslr 
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-4.6.0-1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 4.6.0-1-amd64 (recovery mode)' --class 
debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.6.0-1-amd64-recovery-d27bd1df-7c29-4e4e-a42e-8c230e868733' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod lvm
        insmod ext2
        set 
root='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root 
--hint='lvmid/oyV2xM-hoQ2-b7rl-EPe4-PXyD-xK4D-84vpHC/repsLU-STzJ-8acy-Edls-nW1b-qzGW-3DYbKN'
  d27bd1df-7c29-4e4e-a42e-8c230e868733
        else
          search --no-floppy --fs-uuid --set=root 
d27bd1df-7c29-4e4e-a42e-8c230e868733
        fi
        echo    'Loading Linux 4.6.0-1-amd64 ...'
        linux   /boot/vmlinuz-4.6.0-1-amd64 
root=/dev/mapper/vg--ci--busyapps-lv--root ro single net.ifnames=0 kaslr
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-4.6.0-1-amd64
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*********************** END /boot/grub/grub.cfg

*********************** BEGIN /proc/mdstat
cat: /proc/mdstat: No such file or directory
*********************** END /proc/mdstat

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root 10 Oct 11 09:11 dm-name-vg--ci--busyapps-lv--root -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Oct 11 09:11 dm-name-vg--ci--busyapps-lv--swap -> 
../../dm-0
lrwxrwxrwx 1 root root 10 Oct 11 09:11 
dm-uuid-LVM-oyV2xMhoQ2b7rlEPe4PXyDxK4D84vpHCMwrmBRLhXwoa6eyllv0A1bsDsPLhf1ZY -> 
../../dm-0
lrwxrwxrwx 1 root root 10 Oct 11 09:11 
dm-uuid-LVM-oyV2xMhoQ2b7rlEPe4PXyDxK4D84vpHCrepsLUSTzJ8acyEdlsnW1bqzGW3DYbKN -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Oct 11 09:11 
lvm-pv-uuid-Fkqs5n-lW8F-3HAW-4QzK-ZV3X-JQo2-slB8mY -> ../../vda1
lrwxrwxrwx 1 root root 10 Oct 11 09:11 raid-vg--ci--busyapps-lv--root -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Oct 11 09:11 raid-vg--ci--busyapps-lv--swap -> 
../../dm-0
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Oct 11 09:11 d27bd1df-7c29-4e4e-a42e-8c230e868733 -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Oct 11 09:11 fe275456-1411-4c48-9c2a-bf59cb5fcdab -> 
../../dm-0
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.7.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]  1.5.59
ii  dpkg                   1.18.10
ii  grub-common            2.02~beta3-1
iu  grub-pc-bin            2.02~beta3-1
iu  grub2-common           2.02~beta3-1
ii  ucf                    3.0036

grub-pc recommends no packages.

grub-pc suggests no packages.

-- debconf information:
  grub2/kfreebsd_cmdline_default: quiet
  grub-pc/install_devices_failed: false
  grub-pc/timeout: 5
  grub2/force_efi_extra_removable: false
  grub-pc/hidden_timeout: false
  grub-pc/postrm_purge_boot_grub: false
  grub-pc/install_devices_disks_changed:
* grub-pc/install_devices: /dev/vda
  grub-pc/install_devices_failed_upgrade: true
  grub-pc/install_devices_empty: false
* grub2/linux_cmdline: net.ifnames=0 kaslr
  grub-pc/kopt_extracted: false
  grub-pc/partition_description:
  grub-pc/mixed_legacy_and_grub2: true
  grub2/device_map_regenerated:
* grub2/linux_cmdline_default:
  grub-pc/disk_description:
  grub-pc/chainload_from_menu.lst: true
  grub2/kfreebsd_cmdline:

--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 2.02+dfsg1-10

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.

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 812...@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...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 11 Jan 2019 15:24:20 +0000
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub2-common grub-emu 
grub-emu-dbg grub-pc-bin grub-pc-dbg grub-pc grub-rescue-pc grub-coreboot-bin 
grub-coreboot-dbg grub-coreboot grub-efi-ia32-bin grub-efi-ia32-dbg 
grub-efi-ia32 grub-efi-ia32-signed-template grub-efi-amd64-bin 
grub-efi-amd64-dbg grub-efi-amd64 grub-efi-amd64-signed-template 
grub-efi-ia64-bin grub-efi-ia64-dbg grub-efi-ia64 grub-efi-arm-bin 
grub-efi-arm-dbg grub-efi-arm grub-efi-arm64-bin grub-efi-arm64-dbg 
grub-efi-arm64 grub-efi-arm64-signed-template grub-ieee1275-bin 
grub-ieee1275-dbg grub-ieee1275 grub-firmware-qemu grub-uboot-bin 
grub-uboot-dbg grub-uboot grub-xen-bin grub-xen-dbg grub-xen grub-xen-host 
grub-yeeloong-bin grub-yeeloong-dbg grub-yeeloong grub-theme-starfield 
grub-mount-udeb
Architecture: source
Version: 2.02+dfsg1-10
Distribution: unstable
Urgency: medium
Maintainer: GRUB Maintainers <pkg-grub-de...@alioth-lists.debian.net>
Changed-By: Colin Watson <cjwat...@debian.org>
Description:
 grub-common - GRand Unified Bootloader (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-coreboot-bin - GRand Unified Bootloader, version 2 (Coreboot modules)
 grub-coreboot-dbg - GRand Unified Bootloader, version 2 (Coreboot debug files)
 grub-efi   - GRand Unified Bootloader, version 2 (dummy package)
 grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
 grub-efi-amd64-bin - GRand Unified Bootloader, version 2 (EFI-AMD64 modules)
 grub-efi-amd64-dbg - GRand Unified Bootloader, version 2 (EFI-AMD64 debug 
files)
 grub-efi-amd64-signed-template - GRand Unified Bootloader, version 2 
(EFI-AMD64 signing template)
 grub-efi-arm - GRand Unified Bootloader, version 2 (ARM UEFI version)
 grub-efi-arm-bin - GRand Unified Bootloader, version 2 (ARM UEFI modules)
 grub-efi-arm-dbg - GRand Unified Bootloader, version 2 (ARM UEFI debug files)
 grub-efi-arm64 - GRand Unified Bootloader, version 2 (ARM64 UEFI version)
 grub-efi-arm64-bin - GRand Unified Bootloader, version 2 (ARM64 UEFI modules)
 grub-efi-arm64-dbg - GRand Unified Bootloader, version 2 (ARM64 UEFI debug 
files)
 grub-efi-arm64-signed-template - GRand Unified Bootloader, version 2 (ARM64 
UEFI signing template)
 grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
 grub-efi-ia32-bin - GRand Unified Bootloader, version 2 (EFI-IA32 modules)
 grub-efi-ia32-dbg - GRand Unified Bootloader, version 2 (EFI-IA32 debug files)
 grub-efi-ia32-signed-template - GRand Unified Bootloader, version 2 (EFI-IA32 
signing template)
 grub-efi-ia64 - GRand Unified Bootloader, version 2 (IA64 version)
 grub-efi-ia64-bin - GRand Unified Bootloader, version 2 (IA64 modules)
 grub-efi-ia64-dbg - GRand Unified Bootloader, version 2 (IA64 debug files)
 grub-emu   - GRand Unified Bootloader, version 2 (emulated version)
 grub-emu-dbg - GRand Unified Bootloader, version 2 (emulated debug files)
 grub-firmware-qemu - GRUB firmware image for QEMU
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-ieee1275-bin - GRand Unified Bootloader, version 2 (Open Firmware modules)
 grub-ieee1275-dbg - GRand Unified Bootloader, version 2 (Open Firmware debug 
files)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-mount-udeb - export GRUB filesystems using FUSE (udeb)
 grub-pc    - GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-pc-bin - GRand Unified Bootloader, version 2 (PC/BIOS modules)
 grub-pc-dbg - GRand Unified Bootloader, version 2 (PC/BIOS debug files)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub-theme-starfield - GRand Unified Bootloader, version 2 (starfield theme)
 grub-uboot - GRand Unified Bootloader, version 2 (ARM U-Boot version)
 grub-uboot-bin - GRand Unified Bootloader, version 2 (ARM U-Boot modules)
 grub-uboot-dbg - GRand Unified Bootloader, version 2 (ARM U-Boot debug files)
 grub-xen   - GRand Unified Bootloader, version 2 (Xen version)
 grub-xen-bin - GRand Unified Bootloader, version 2 (Xen modules)
 grub-xen-dbg - GRand Unified Bootloader, version 2 (Xen debug files)
 grub-xen-host - GRand Unified Bootloader, version 2 (Xen host version)
 grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
 grub-yeeloong-bin - GRand Unified Bootloader, version 2 (Yeeloong modules)
 grub-yeeloong-dbg - GRand Unified Bootloader, version 2 (Yeeloong debug files)
 grub2      - GRand Unified Bootloader, version 2 (dummy package)
 grub2-common - GRand Unified Bootloader (common files for version 2)
Closes: 776450 812574 908162
Changes:
 grub2 (2.02+dfsg1-10) unstable; urgency=medium
 .
   * Apply patch from Heinrich Schuchardt (mentioned in #916695 though
     unrelated):
     - grub-core/loader/efi/fdt.c: do not copy random memory
   * Add luks modules to signed UEFI images (pointed out by Alex Griffin and
     Hervé Werner; closes: #908162, LP: #1565950).
   * Keep track of the previous version of /usr/share/grub/default/grub and
     set UCF_FORCE_CONFFOLD=1 when running ucf if it hasn't changed; ucf
     can't figure this out for itself since we apply debconf-based
     customisations on top of the template configuration file (closes:
     #812574, LP: #564853).
   * Backport Xen PVH guest support from upstream (closes: #776450).  Thanks
     to Hans van Kranenburg for testing.
Checksums-Sha1:
 b54a703ec31b8d31ae5356987410985cb44b5d26 6719 grub2_2.02+dfsg1-10.dsc
 0f3011908b0410c6b953e9e4548bdc68a28220e7 1119468 
grub2_2.02+dfsg1-10.debian.tar.xz
 89f26dadd57752564b69409f708ee0c4e9dd7deb 15234 
grub2_2.02+dfsg1-10_source.buildinfo
Checksums-Sha256:
 6c36122697e9c8496b58d5ca37b981282dc19d79eedadb0a317299c2425ae703 6719 
grub2_2.02+dfsg1-10.dsc
 b29902e8ada4bc2f3f494a9b25dff7e83c1caa14024307dfe26460bb375dd2dd 1119468 
grub2_2.02+dfsg1-10.debian.tar.xz
 501e97bd5557ae27aedb6a45b79b7ee192c3fbc90bd7a5bf7859b95f69e41643 15234 
grub2_2.02+dfsg1-10_source.buildinfo
Files:
 5b70bf3dbf02225f3dcf729e3cc17f2a 6719 admin optional grub2_2.02+dfsg1-10.dsc
 7101de97ff5d6e5bed99f661c6594ca5 1119468 admin optional 
grub2_2.02+dfsg1-10.debian.tar.xz
 8ccbb0464dacb8d8840d8b5aafea7b10 15234 admin optional 
grub2_2.02+dfsg1-10_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAlw4tVUACgkQOTWH2X2G
UAuBFRAAk7ECQxaNMZIXWV1X66O7Gx3+U4abalrvITa5MZWfvdZuNlTrV+Xo7klq
k3AfQe+2sfqN+2b7CxpkjAdNRWxj0S0dvyJToo4vmc9pDtlBa2dvDEF5pPEMWj75
p73gLn479USyZ+v/gGtrrAjIogPJaTUmHNFESv2kXT/6gYGKEZHYBYfhezr2YvoQ
JLNfZGiwiLSRaPPxmTfNh6RsYFQSybEDA2YENh/FnWZnGY0PfrmJ+5KMhECKOjTA
UplFx8MFKEZIwVsYja+HLdZGAJFjJc2U2cQ6ovELTMT+pjpP2KNOW4QRU5tByPJu
fp8RmqdE6zOdJfn+XPlBz6x2dFdkXsfiytO3t04XUN8m5amrOidcmkc7ugyCroEW
JSzPeZUwCA+oRjJ/gPmbvswQ1ciQl4pB0LFt9EQ81g/STCuN4GOi6tFG62NJRgXH
rPfjBLBOUGigBud/AQ/y6HSdFPeS6RVxi+jdjap8/Fe0jEna9CoDamgYIxpPSYQl
HxYS8mA/EmyDOH1R35qtv918jOZTjGWR2eBY5ZvKSzJFo9wqScRu2sY3LjRCMjNw
OT0riesfCAtPuf1iO8ONqarxDIp4aoesbeqdIwsOzf0VIJS2iJyu857m+2VdtAvY
GkH+hxjfPWglkwrgd8Z4c9RDYPLbc63s5C5nUdfdS6tUd/Oysvc=
=Za1k
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to