diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2016-10-25 13:10:17 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2016-10-25 13:10:17 +0000 |
commit | 17e90600218e654071457f0845968e143e8c5d15 (patch) | |
tree | f58c502fe6dadaef45e1a3844944905837b37e51 /share/scripts/debootstrap | |
parent | Adding upstream version 20160801. (diff) | |
download | open-infrastructure-compute-tools-17e90600218e654071457f0845968e143e8c5d15.tar.xz open-infrastructure-compute-tools-17e90600218e654071457f0845968e143e8c5d15.zip |
Adding upstream version 20161101.upstream/20161101
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'share/scripts/debootstrap')
-rwxr-xr-x | share/scripts/debootstrap | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/share/scripts/debootstrap b/share/scripts/debootstrap index de9e501..1ead471 100755 --- a/share/scripts/debootstrap +++ b/share/scripts/debootstrap @@ -125,13 +125,21 @@ then fi ARCHITECTURE="${ARCHITECTURE:-$(dpkg --print-architecture)}" -DISTRIBUTION="${DISTRIBUTION:-jessie}" -MIRROR="${MIRROR:-http://ftp.debian.org/debian}" +DISTRIBUTION="${DISTRIBUTION:-stretch}" +MIRROR="${MIRROR:-https://deb.debian.org/debian}" PASSWORD="${PASSWORD:-$(dd if=/dev/urandom bs=12 count=1 2> /dev/null | base64)}" +INCLUDE="dbus" + +case "${MIRROR}" in + https*) + INCLUDE="${INCLUDE},apt-transport-https,ca-certificates" + ;; +esac + mkdir -p "${MACHINES}" -debootstrap --arch=${ARCHITECTURE} --include=dbus ${DISTRIBUTION} ${MACHINES}/${NAME} ${MIRROR} +debootstrap --arch=${ARCHITECTURE} --include=${INCLUDE} ${DISTRIBUTION} ${MACHINES}/${NAME} ${MIRROR} chroot "${MACHINES}/${NAME}" apt-get clean # Setting hostname |