Codebase list live-build / 275178c debian / live-build.bug-script
275178c

Tree @275178c (Download .tar.gz)

live-build.bug-script @275178craw · history · blame

#!/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