Package: grub2-common
Version: 2.00-22
Severity: important

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Since the last grub update in testing, update-grub appears to fail
during 30_init-select and doesn't include Windows partitions in
grub.cfg, although it sees them:

> khufu:~# update-grub
> Generating grub.cfg ...
> Found background image: /usr/share/images/desktop-base/desktop-grub.png
> Found linux image: /boot/vmlinuz-3.13.3-khufu-2
> Found initrd image: /boot/initrd.img-3.13.3-khufu-2
> Found linux image: /boot/vmlinuz-3.13.2-khufu-0
> Found initrd image: /boot/initrd.img-3.13.2-khufu-0
> Found memtest86+ image: /memtest86+.bin
> Found memtest86+ multiboot image: /memtest86+_multiboot.bin
> Found GRUB Invaders image: /boot/invaders.exec
> Found Windows 8 (loader) on /dev/sda1
> Found Windows 8 (loader) on /dev/sdc1
> done

Last lines of grub.cfg, however, come out as:

> ### BEGIN /etc/grub.d/22_invaders ###
> menuentry "GRUB Invaders" {
>       insmod part_msdos
>       insmod xfs
>       set root='hd1,msdos1'
>       if [ x$feature_platform_search_hint = xy ]; then
>         search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 
> --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  
> 47193b17-a99a-4a83-8818-fc54982e3996
>       else
>         search --no-floppy --fs-uuid --set=root 
> 47193b17-a99a-4a83-8818-fc54982e3996
>       fi
>       multiboot       /invaders.exec
> }
> ### END /etc/grub.d/22_invaders ###
> 
> ### BEGIN /etc/grub.d/30_init-select ###

   Currently it's necessary to copy the Windows partition stuff from
an old grub.cfg to the new one.


- -- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/khufu_vg-root_lv / xfs rw,relatime,attr2,inode64,noquota 0 0
/dev/sdb1 /boot xfs rw,relatime,attr2,inode64,noquota 0 0
/dev/mapper/khufu_vg-home_lv /home xfs rw,relatime,attr2,inode64,noquota 0 0
/dev/mapper/khufu_vg-var_lv /var xfs rw,relatime,attr2,inode64,noquota 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(fd0)   /dev/fd0
(hd0)   /dev/sda
(hd1)   /dev/sdb
*********************** 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
  set have_grubenv=true
  load_env
fi
set default="${saved_entry}"

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
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod lvm
insmod xfs
set root='lvm/khufu_vg-root_lv'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvm/khufu_vg-root_lv'  
9a0f45e7-2756-40ed-ac7c-534611cfae51
else
  search --no-floppy --fs-uuid --set=root 9a0f45e7-2756-40ed-ac7c-534611cfae51
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1280x1024x32
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=-1
else
  set timeout=10
fi
play 480 440 1
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod lvm
insmod xfs
set root='lvm/khufu_vg-root_lv'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvm/khufu_vg-root_lv'  
9a0f45e7-2756-40ed-ac7c-534611cfae51
else
  search --no-floppy --fs-uuid --set=root 9a0f45e7-2756-40ed-ac7c-534611cfae51
fi
insmod png
if background_image /usr/share/images/desktop-base/joy-grub.png; then
  set color_normal=white/black
  set color_highlight=black/white
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
        set gfxpayload="${1}"
}
set linux_gfx_mode=1280x1024x32
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu 
--class os $menuentry_id_option 
'gnulinux-simple-9a0f45e7-2756-40ed-ac7c-534611cfae51' {
        savedefault
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        insmod part_msdos
        insmod xfs
        set root='hd1,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 
--hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  
47193b17-a99a-4a83-8818-fc54982e3996
        else
          search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
        fi
        echo    'Loading Linux 3.13.3-khufu-2 ...'
        linux   /vmlinuz-3.13.3-khufu-2 root=/dev/mapper/khufu_vg-root_lv ro 
security=none iommu=soft printk.time=n  
        echo    'Loading initial ramdisk ...'
        initrd  /initrd.img-3.13.3-khufu-2
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 
'gnulinux-advanced-9a0f45e7-2756-40ed-ac7c-534611cfae51' {
        menuentry 'Debian GNU/Linux, with Linux 3.13.3-khufu-2' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-3.13.3-khufu-2-advanced-9a0f45e7-2756-40ed-ac7c-534611cfae51' {
        savedefault
                load_video
                gfxmode $linux_gfx_mode
                insmod gzio
                insmod part_msdos
                insmod xfs
                set root='hd1,msdos1'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root 
--hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 
--hint='hd1,msdos1'  47193b17-a99a-4a83-8818-fc54982e3996
                else
                  search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
                fi
                echo    'Loading Linux 3.13.3-khufu-2 ...'
                linux   /vmlinuz-3.13.3-khufu-2 
root=/dev/mapper/khufu_vg-root_lv ro security=none iommu=soft printk.time=n  
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-3.13.3-khufu-2
        }
        menuentry 'Debian GNU/Linux, with Linux 3.13.3-khufu-2 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-3.13.3-khufu-2-recovery-9a0f45e7-2756-40ed-ac7c-534611cfae51' {
                load_video
                gfxmode $linux_gfx_mode
                insmod gzio
                insmod part_msdos
                insmod xfs
                set root='hd1,msdos1'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root 
--hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 
--hint='hd1,msdos1'  47193b17-a99a-4a83-8818-fc54982e3996
                else
                  search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
                fi
                echo    'Loading Linux 3.13.3-khufu-2 ...'
                linux   /vmlinuz-3.13.3-khufu-2 
root=/dev/mapper/khufu_vg-root_lv ro single security=none iommu=soft 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-3.13.3-khufu-2
        }
        menuentry 'Debian GNU/Linux, with Linux 3.13.2-khufu-0' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-3.13.2-khufu-0-advanced-9a0f45e7-2756-40ed-ac7c-534611cfae51' {
        savedefault
                load_video
                gfxmode $linux_gfx_mode
                insmod gzio
                insmod part_msdos
                insmod xfs
                set root='hd1,msdos1'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root 
--hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 
--hint='hd1,msdos1'  47193b17-a99a-4a83-8818-fc54982e3996
                else
                  search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
                fi
                echo    'Loading Linux 3.13.2-khufu-0 ...'
                linux   /vmlinuz-3.13.2-khufu-0 
root=/dev/mapper/khufu_vg-root_lv ro security=none iommu=soft printk.time=n  
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-3.13.2-khufu-0
        }
        menuentry 'Debian GNU/Linux, with Linux 3.13.2-khufu-0 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-3.13.2-khufu-0-recovery-9a0f45e7-2756-40ed-ac7c-534611cfae51' {
                load_video
                gfxmode $linux_gfx_mode
                insmod gzio
                insmod part_msdos
                insmod xfs
                set root='hd1,msdos1'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root 
--hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 
--hint='hd1,msdos1'  47193b17-a99a-4a83-8818-fc54982e3996
                else
                  search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
                fi
                echo    'Loading Linux 3.13.2-khufu-0 ...'
                linux   /vmlinuz-3.13.2-khufu-0 
root=/dev/mapper/khufu_vg-root_lv ro single security=none iommu=soft 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-3.13.2-khufu-0
        }
}

### 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 xfs
        set root='hd1,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 
--hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  
47193b17-a99a-4a83-8818-fc54982e3996
        else
          search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
        fi
        linux16 /memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
        insmod part_msdos
        insmod xfs
        set root='hd1,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 
--hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  
47193b17-a99a-4a83-8818-fc54982e3996
        else
          search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
        fi
        linux16 /memtest86+.bin console=ttyS0,115200n8
}
menuentry "Memory test (memtest86+, experimental multiboot)" {
        insmod part_msdos
        insmod xfs
        set root='hd1,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 
--hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  
47193b17-a99a-4a83-8818-fc54982e3996
        else
          search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
        fi
        multiboot       /memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200, experimental 
multiboot)" {
        insmod part_msdos
        insmod xfs
        set root='hd1,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 
--hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  
47193b17-a99a-4a83-8818-fc54982e3996
        else
          search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
        fi
        multiboot       /memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/22_invaders ###
menuentry "GRUB Invaders" {
        insmod part_msdos
        insmod xfs
        set root='hd1,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 
--hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  
47193b17-a99a-4a83-8818-fc54982e3996
        else
          search --no-floppy --fs-uuid --set=root 
47193b17-a99a-4a83-8818-fc54982e3996
        fi
        multiboot       /invaders.exec
}
### END /etc/grub.d/22_invaders ###

### BEGIN /etc/grub.d/30_init-select ###
*********************** END /boot/grub/grub.cfg

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

*********************** BEGIN LVM
  --- Volume group ---
  VG Name               khufu_vg
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  4
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                3
  Open LV               3
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               1.81 TiB
  PE Size               4.00 MiB
  Total PE              475500
  Alloc PE / Size       290304 / 1.11 TiB
  Free  PE / Size       185196 / 723.42 GiB
  VG UUID               QuMBRJ-zMpz-AG2c-0psN-2d0I-vS8V-6Rqwad
   
  --- Physical volume ---
  PV Name               /dev/sdb3
  VG Name               khufu_vg
  PV Size               1.81 TiB / not usable 2.79 MiB
  Allocatable           yes 
  PE Size               4.00 MiB
  Total PE              475500
  Free PE               185196
  Allocated PE          290304
  PV UUID               LOIfkq-S3Ce-FB8q-4rgX-SB02-LEyg-L2Mu4c
   
  --- Logical volume ---
  LV Path                /dev/khufu_vg/root_lv
  LV Name                root_lv
  VG Name                khufu_vg
  LV UUID                tXDZkJ-vKN2-eH7K-A5fC-UcFA-Sv2e-apIiM0
  LV Write Access        read/write
  LV Creation host, time debian, 2013-07-29 21:59:14 -0400
  LV Status              available
  # open                 1
  LV Size                100.00 GiB
  Current LE             25600
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:0
   
  --- Logical volume ---
  LV Path                /dev/khufu_vg/var_lv
  LV Name                var_lv
  VG Name                khufu_vg
  LV UUID                Ct8WZc-6jQ3-4Kf9-JTie-GEM7-KZ4U-ucyzNb
  LV Write Access        read/write
  LV Creation host, time debian, 2013-07-29 21:59:49 -0400
  LV Status              available
  # open                 1
  LV Size                10.00 GiB
  Current LE             2560
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:1
   
  --- Logical volume ---
  LV Path                /dev/khufu_vg/home_lv
  LV Name                home_lv
  VG Name                khufu_vg
  LV UUID                5vze32-OpAr-WKIN-79Cv-E09s-rTHL-InPudB
  LV Write Access        read/write
  LV Creation host, time debian, 2013-07-29 22:00:21 -0400
  LV Status              available
  # open                 1
  LV Size                1.00 TiB
  Current LE             262144
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:2
   
*********************** END LVM

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Feb 19 16:03 
ata-HP_DVD_Writer_1260v_3524495_206244501083 -> ../../sr1
lrwxrwxrwx 1 root root  9 Feb 19 16:03 ata-PIONEER_BD-RW_BDR-208D -> ../../sr0
lrwxrwxrwx 1 root root  9 Feb 19 21:03 
ata-WDC_WD2002FAEX-007BA0_WD-WCAY01528606 -> ../../sdb
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
ata-WDC_WD2002FAEX-007BA0_WD-WCAY01528606-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
ata-WDC_WD2002FAEX-007BA0_WD-WCAY01528606-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
ata-WDC_WD2002FAEX-007BA0_WD-WCAY01528606-part3 -> ../../sdb3
lrwxrwxrwx 1 root root  9 Feb 19 21:32 
ata-WDC_WD2002FAEX-007BA0_WD-WCAY01707335 -> ../../sda
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
ata-WDC_WD2002FAEX-007BA0_WD-WCAY01707335-part1 -> ../../sda1
lrwxrwxrwx 1 root root  9 Feb 19 21:03 ata-WDC_WD30EZRX-00DC0B0_WD-WCC1T0595120 
-> ../../sdc
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
ata-WDC_WD30EZRX-00DC0B0_WD-WCC1T0595120-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 dm-name-khufu_vg-home_lv -> ../../dm-2
lrwxrwxrwx 1 root root 10 Feb 19 16:03 dm-name-khufu_vg-root_lv -> ../../dm-0
lrwxrwxrwx 1 root root 10 Feb 19 21:03 dm-name-khufu_vg-var_lv -> ../../dm-1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
dm-uuid-LVM-QuMBRJzMpzAG2c0psN2d0IvS8V6Rqwad5vze32OpArWKIN79CvE09srTHLInPudB -> 
../../dm-2
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
dm-uuid-LVM-QuMBRJzMpzAG2c0psN2d0IvS8V6RqwadCt8WZc6jQ34Kf9JTieGEM7KZ4UucyzNb -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Feb 19 16:03 
dm-uuid-LVM-QuMBRJzMpzAG2c0psN2d0IvS8V6RqwadtXDZkJvKN2eH7KA5fCUcFASv2eapIiM0 -> 
../../dm-0
lrwxrwxrwx 1 root root  9 Feb 19 21:03 
scsi-SATA_WDC_WD2002FAEX-0_WD-WCAY01528606 -> ../../sdb
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
scsi-SATA_WDC_WD2002FAEX-0_WD-WCAY01528606-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
scsi-SATA_WDC_WD2002FAEX-0_WD-WCAY01528606-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
scsi-SATA_WDC_WD2002FAEX-0_WD-WCAY01528606-part3 -> ../../sdb3
lrwxrwxrwx 1 root root  9 Feb 19 21:32 
scsi-SATA_WDC_WD2002FAEX-0_WD-WCAY01707335 -> ../../sda
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
scsi-SATA_WDC_WD2002FAEX-0_WD-WCAY01707335-part1 -> ../../sda1
lrwxrwxrwx 1 root root  9 Feb 19 21:03 
scsi-SATA_WDC_WD30EZRX-00D_WD-WCC1T0595120 -> ../../sdc
lrwxrwxrwx 1 root root 10 Feb 19 21:03 
scsi-SATA_WDC_WD30EZRX-00D_WD-WCC1T0595120-part1 -> ../../sdc1
lrwxrwxrwx 1 root root  9 Feb 19 21:32 wwn-0x50014ee208c93043 -> ../../sda
lrwxrwxrwx 1 root root 10 Feb 19 21:03 wwn-0x50014ee208c93043-part1 -> 
../../sda1
lrwxrwxrwx 1 root root  9 Feb 19 21:03 wwn-0x50014ee2b2ef7b73 -> ../../sdc
lrwxrwxrwx 1 root root 10 Feb 19 21:03 wwn-0x50014ee2b2ef7b73-part1 -> 
../../sdc1
lrwxrwxrwx 1 root root  9 Feb 19 21:03 wwn-0x50014ee2b317c950 -> ../../sdb
lrwxrwxrwx 1 root root 10 Feb 19 21:03 wwn-0x50014ee2b317c950-part1 -> 
../../sdb1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 wwn-0x50014ee2b317c950-part2 -> 
../../sdb2
lrwxrwxrwx 1 root root 10 Feb 19 21:03 wwn-0x50014ee2b317c950-part3 -> 
../../sdb3
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Feb 19 21:03 47193b17-a99a-4a83-8818-fc54982e3996 -> 
../../sdb1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 4ACDB421D7113A6D -> ../../sda1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 6de066bf-bdf8-42d0-af8b-9023909233c3 -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 95636816-277d-49c4-be7d-923de965f324 -> 
../../dm-2
lrwxrwxrwx 1 root root 10 Feb 19 16:03 9a0f45e7-2756-40ed-ac7c-534611cfae51 -> 
../../dm-0
lrwxrwxrwx 1 root root 10 Feb 19 21:03 A24A8E094A8DDA85 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Feb 19 21:03 e47ecf44-3d4a-49c4-873b-8afa329e73ea -> 
../../sdb2
*********************** END /dev/disk/by-uuid

- -- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13.3-khufu-2 (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub2-common depends on:
ii  dpkg          1.17.6
ii  grub-common   2.00-22
ii  install-info  5.2.0.dfsg.1-2

grub2-common recommends no packages.

grub2-common suggests no packages.

- -- no debconf information

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJTBWscAAoJEDHYrtWvbQ1KiMAP+wdCqSvXSUr0VwYjiOUZMQUs
twsCI7/HeFtunlcMgA84pDn2//U5hQ3ZGL2nDg8FFikZt3BX5mtYWnjACe8V79kc
30T3QIN2MtT6Tbw5k+bpnMh06Yzg8p1ecuF61meAd71uSfzWZcoUw7RIrYxKlIqK
oxWs0ybtOcNHI73hZCpN3n7CICERWoVEN3a0yQVApQMBvSoTLIsnK/kfEZKXQtNf
4COm5AqdtnkDTngbYi770XRrBJoEU8aXcJjC6ikBX5uentRv58iuxd9eED3kyKlt
YlCoaIh/kl2WN5Jw7XzWuAExCMmIQdc4XJL/+ajbkRUOKKtNOsmvwSFyIvK93wXH
97N+0tqWTM0ao0A32RKAra5qpzi1W/bzDGM1WUgfhfoP/NsPj6emu+yc/CPXDnXM
zGIE+58iWpvMWlqCF+f8YrxFSJmO45gkU7ar5XUf4VeS7jFhfxKN4Qa1MgB5DezT
hjzihWa9lapYr0aTo7Xi8nBZgYYXTTf0222nAcUVDuWYkUxYfeCDoc/7GoxgL95X
nrYQYXpXAHkTEDhajGZPEI0T4+VbL1PtWoniUu7X2ZRMWjgaSHplcNVWLFtWZ5f6
xhCPhw19VWfTc6sRg/98Q7pW2JEoHCoSHSPx7zMCyWYePyHn7bFe2ln1FZMcuegJ
yzL2p3icj1FGeuykL+P+
=5jz7
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to