Skip to content

Commit

Permalink
docker: debian-bootstrap.pre: print helpful message if DEB_ARCH/DEB_T…
Browse files Browse the repository at this point in the history
…YPE unset

The debian-bootstrap image doesn't choose a default architecture and
distribution version, instead the user has to set both DEB_ARCH and
DEB_TYPE in the environment. Print a reasonably helpful message if
either of them isn't set instead of complaining about "qemu-" being
missing or erroring out because we cannot cd to the mirror URL.

Signed-off-by: Sascha Silbe <silbe@linux.vnet.ibm.com>
Message-Id: <1473192351-601-5-git-send-email-silbe@linux.vnet.ibm.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
  • Loading branch information
Sascha Silbe authored and Fam Zheng committed Sep 8, 2016
1 parent b5dc88c commit 341edc0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/docker/dockerfiles/debian-bootstrap.pre
Expand Up @@ -15,6 +15,19 @@ exit_and_skip()
if [ -z $FAKEROOT ]; then
echo "Please install fakeroot to enable bootstraping" >&2
exit_and_skip

fi

if [ -z "${DEB_ARCH}" ]; then
echo "Please set DEB_ARCH to choose an architecture (e.g. armhf)" >&2
exit_and_skip

fi

if [ -z "${DEB_TYPE}" ]; then
echo "Please set DEB_TYPE to a Debian archive name (e.g. testing)" >&2
exit_and_skip

fi

# We check in order for
Expand Down

0 comments on commit 341edc0

Please sign in to comment.