summaryrefslogtreecommitdiff
path: root/debian/live-build.bug-script
blob: 5456b1d5c31cde5747bb7a40f09824a7a57ff3a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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