2007-11-11 09:09:33 -01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 13:00:08 +00:00
|
|
|
DEFAULT_SETTINGS="/etc/default/live-build"
|
2008-06-10 17:50:29 +00:00
|
|
|
|
2007-11-11 09:09:33 -01:00
|
|
|
# Checking depends
|
|
|
|
dpkg -l debootstrap cdebootstrap
|
|
|
|
|
|
|
|
# Checking suggests
|
2008-08-14 19:33:56 +00:00
|
|
|
dpkg -l dosfstools genisoimage memtest86+ memtest86 mtools parted squashfs-tools genext2fs mtd-tools sudo fakeroot syslinux grub uuid-runtime win32-loader
|
2008-06-10 17:50:29 +00:00
|
|
|
|
|
|
|
if [ -e "${DEFAULT_SETTINGS}" ]; then
|
|
|
|
echo "Contents of ${DEFAULT_SETTINGS}:"
|
|
|
|
cat "${DEFAULT_SETTINGS}"
|
|
|
|
else
|
|
|
|
echo "${DEFAULT_SETTINGS} does not exist."
|
|
|
|
fi
|
2010-09-02 18:17:45 +00:00
|
|
|
|
|
|
|
exit 0
|