11b4a5501d
Only supports Debian family distribution so far. Change-Id: I9fa0b833c34a614fe498c6c6ae599733a69c1309
14 lines
409 B
Bash
Executable File
14 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
# Install the image creation toolchain so folk can create their own images
|
|
# (also includes the bootstrap-from-devstack facilities needed until we have
|
|
# full image mastering of openstack).
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
install-packages git
|
|
if [ -n "$http_proxy" ]; then
|
|
sudo -Hiu stack git config --global http.proxy $http_proxy
|
|
fi
|
|
sudo -Hiu stack git clone https://github.com/tripleo/incubator.git
|