9371411ddb
devstack element points to github:tripleo/incubator, instead of demo. Also, the element now pulls devstack into the image, rather than relying on incubator/scripts/demo to pull it down after the image starts. Change-Id: I878edcc8f5b1a509b14cadfb5fb4c33571a7f312
14 lines
411 B
Bash
Executable File
14 lines
411 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
|
|
|
|
apt-get -y install 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
|