#!/bin/sh

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

dpkg -l debootstrap

if [ -e "${DEFAULT_SETTINGS}" ]; then
	echo "Contents of ${DEFAULT_SETTINGS}:"
	cat "${DEFAULT_SETTINGS}"
else
	echo "${DEFAULT_SETTINGS} does not exist."
fi

exit 0
