Dropping unuseful information from bug-script (Closes: #774340).
Historically we tried to have all necessary information in bug reports, such as version of certain packages used during the build. In reality, the only interesting package is debootstrap on the host system - everything else is taken up from the mirror from within the chroot and is noted in the build log. Users building non-chrooted will have to collect their information by hand anyway, so it's better to remove anything but debootstrap.
This commit is contained in:
parent
f74ecf1907
commit
e1f9abbef1
|
@ -2,12 +2,8 @@
|
||||||
|
|
||||||
DEFAULT_SETTINGS="/etc/live/build.conf"
|
DEFAULT_SETTINGS="/etc/live/build.conf"
|
||||||
|
|
||||||
# Checking depends
|
|
||||||
dpkg -l debootstrap
|
dpkg -l debootstrap
|
||||||
|
|
||||||
# Checking suggests
|
|
||||||
dpkg -l dosfstools xorriso loadlin memtest86+ memtest86 mtools parted squashfs-tools mtd-tools syslinux syslinux-common extlinux grub uuid-runtime win32-loader
|
|
||||||
|
|
||||||
if [ -e "${DEFAULT_SETTINGS}" ]; then
|
if [ -e "${DEFAULT_SETTINGS}" ]; then
|
||||||
echo "Contents of ${DEFAULT_SETTINGS}:"
|
echo "Contents of ${DEFAULT_SETTINGS}:"
|
||||||
cat "${DEFAULT_SETTINGS}"
|
cat "${DEFAULT_SETTINGS}"
|
||||||
|
|
Loading…
Reference in New Issue