summaryrefslogtreecommitdiff
path: root/debian/bug/live-helper.script
diff options
context:
space:
mode:
Diffstat (limited to 'debian/bug/live-helper.script')
-rw-r--r--debian/bug/live-helper.script16
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/bug/live-helper.script b/debian/bug/live-helper.script
new file mode 100644
index 0000000..54ef8dd
--- /dev/null
+++ b/debian/bug/live-helper.script
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+DEFAULT_SETTINGS="/etc/default/live-helper"
+
+# Checking depends
+dpkg -l debootstrap cdebootstrap
+
+# Checking suggests
+dpkg -l dosfstools genisoimage memtest86+ memtest86 mtools parted squashfs-tools genext2fs mtd-tools sudo fakeroot syslinux grub uuid-runtime win32-loader
+
+if [ -e "${DEFAULT_SETTINGS}" ]; then
+ echo "Contents of ${DEFAULT_SETTINGS}:"
+ cat "${DEFAULT_SETTINGS}"
+else
+ echo "${DEFAULT_SETTINGS} does not exist."
+fi