Show contents of /etc/default/live-helper in bug info collection script

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
Chris Lamb 2008-06-10 18:50:29 +01:00
parent 0c15f64d5b
commit d6fa2efe6d
1 changed files with 9 additions and 0 deletions

9
debian/bug/script vendored
View File

@ -1,7 +1,16 @@
#!/bin/sh #!/bin/sh
DEFAULT_SETTINGS="/etc/default/live-helper"
# Checking depends # Checking depends
dpkg -l debootstrap cdebootstrap dpkg -l debootstrap cdebootstrap
# Checking suggests # Checking suggests
dpkg -l dosfstools genisoimage memtest86+ memtest86 mtools parted squashfs-tools genext2fs mtd-tools sudo fakeroot syslinux grub uuid-runtime dpkg -l dosfstools genisoimage memtest86+ memtest86 mtools parted squashfs-tools genext2fs mtd-tools sudo fakeroot syslinux grub uuid-runtime
if [ -e "${DEFAULT_SETTINGS}" ]; then
echo "Contents of ${DEFAULT_SETTINGS}:"
cat "${DEFAULT_SETTINGS}"
else
echo "${DEFAULT_SETTINGS} does not exist."
fi