summaryrefslogtreecommitdiff
path: root/debian/live-build.bug-script
blob: 54ef8ddcabe273d20e17f447df49e8986629abca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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