summaryrefslogtreecommitdiff
path: root/debian/live-build.bug-script
blob: 8a68d3038c0baad16e11e8a625d70f1e7cafbe1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

DEFAULT_SETTINGS="/etc/live/build.conf"

# Checking depends
dpkg -l debootstrap cdebootstrap

# 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
	echo "Contents of ${DEFAULT_SETTINGS}:"
	cat "${DEFAULT_SETTINGS}"
else
	echo "${DEFAULT_SETTINGS} does not exist."
fi

exit 0