2012-11-09 11:04:13 +00:00
|
|
|
#!/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
|
|
|
|
|
2013-01-28 05:41:54 +00:00
|
|
|
install-packages git
|
2012-12-05 17:28:52 +00:00
|
|
|
if [ -n "$http_proxy" ]; then
|
|
|
|
sudo -Hiu stack git config --global http.proxy $http_proxy
|
|
|
|
fi
|
2012-12-13 10:31:26 +00:00
|
|
|
sudo -Hiu stack git clone https://github.com/tripleo/incubator.git
|