1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Use default mirror from debootstrap when not explicitly provided, and add better target directory naming

Upstream-commit: ab34115b42cbcb42cb91593601d6daff2c7f32ad
Component: engine
This commit is contained in:
Tianon Gravi
2013-04-28 13:37:52 -06:00
parent 236d6db8f3
commit eb1c306ba5

View File

@@ -14,7 +14,7 @@ include='iproute,iputils-ping'
repo="$1"
suite="${2:-$latestSuite}"
mirror="${3:-http://ftp.us.debian.org/debian}"
mirror="${3:-}" # stick to the default debootstrap mirror if one is not provided
if [ ! "$repo" ]; then
echo >&2 "usage: $0 repo [suite [mirror]]"
@@ -22,7 +22,7 @@ if [ ! "$repo" ]; then
exit 1
fi
target="/tmp/docker-rootfs-$$-$RANDOM-debian-$suite"
target="/tmp/docker-rootfs-debian-$suite-$$-$RANDOM"
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
returnTo="$(pwd -P)"