live-build/debian/live-build.bug-script

19 lines
441 B
Plaintext
Raw Normal View History

2007-11-11 09:09:33 -01:00
#!/bin/sh
DEFAULT_SETTINGS="/etc/live/build.conf"
2007-11-11 09:09:33 -01:00
# Checking depends
dpkg -l debootstrap cdebootstrap
# Checking suggests
2012-12-16 19:06:25 -01:00
dpkg -l dosfstools xorriso loadlin memtest86+ memtest86 mtools parted squashfs-tools 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
exit 0