2012-12-13 10:31:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Initialize devstack in the bootstrap image
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o xtrace
|
|
|
|
|
2013-01-28 05:41:54 +00:00
|
|
|
install-packages git
|
2012-12-13 10:31:26 +00:00
|
|
|
if [ -n "$http_proxy" ]; then
|
|
|
|
sudo -Hiu stack git config --global http.proxy $http_proxy
|
|
|
|
fi
|
|
|
|
sudo -Hiu stack git clone -b baremetal-dev https://github.com/tripleo/devstack.git
|