diff options
author | Daniel Baumann <daniel@debian.org> | 2009-11-22 14:36:42 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2009-11-22 14:38:00 +0100 |
commit | a62f12110b19a52a58d7eae871012202cfa16055 (patch) | |
tree | 0bd188079c808ee8956fb5304c46ce8266b49f75 /debian/bug | |
download | vyos-live-build-a62f12110b19a52a58d7eae871012202cfa16055.tar.gz vyos-live-build-a62f12110b19a52a58d7eae871012202cfa16055.zip |
Renaming categories to archive areas (Closes: #519690).
Diffstat (limited to 'debian/bug')
-rw-r--r-- | debian/bug/live-helper.presubj | 11 | ||||
-rw-r--r-- | debian/bug/live-helper.script | 16 |
2 files changed, 27 insertions, 0 deletions
diff --git a/debian/bug/live-helper.presubj b/debian/bug/live-helper.presubj new file mode 100644 index 000000000..e59a93a65 --- /dev/null +++ b/debian/bug/live-helper.presubj @@ -0,0 +1,11 @@ +Before submitting a bug report against live-helper, please make sure +that you have read your guidlines for Debian Live bug reports: + + http://live.debian.net/manual/html/bugs.html + +By providing the required information as outlined in the guidlines makes +sure that we can optimally reproduce and fix bugs, not doing so wastes a +lot of time for both the maintainers and the submitters. + +Pleae bear in mind that bugs that lack the required information will +likely be ignored when the submitter doesn't follow up to questions. diff --git a/debian/bug/live-helper.script b/debian/bug/live-helper.script new file mode 100644 index 000000000..54ef8ddca --- /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 |