ci-test-sample/debian/live-build.bug-script

19 lines
437 B
Bash

#!/bin/sh
DEFAULT_SETTINGS="/etc/live/build.conf"
# Checking depends
dpkg -l debootstrap cdebootstrap
# Checking suggests
dpkg -l dosfstools genisoimage 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