Package: initramfs-tools Version: 0.83 Severity: grave Justification: renders package unusable
In the config file initramfs-tools.preinst , there is a missing escape of the endofline/newline on line 32. A patch is attached to correct this. donfede -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15.2-xwing-1 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
--- debian/initramfs-tools.preinst 2006-10-17 14:42:59.000000000 -0400 +++ debian/initramfs-tools.preinst.org 2006-10-17 14:42:49.000000000 -0400 @@ -29,7 +29,7 @@ -e '/# This file should/,/one per line\./d' \ -e 's/Comments begin with.*/Syntax: module_name [args ...]/' \ -e 's/^# ext2$/# raid1/' \ - -e 's/^# wd io=0x300$/# sd_mod/' \ + -e 's/^# wd io=0x300$/# sd_mod/' -e '/^ide-generic/d' \ -e '/^ide-disk/d' \ -e '/^ext2/d' \