80b9b45e31
See https://bugs.launchpad.net/heat/+bug/1122472 for information on the specific problem in heat. This can be removed when that bug is resolved. Change-Id: I76a7a42dea9472c54f03593c8c67856aa23f2c73
25 lines
535 B
Bash
Executable File
25 lines
535 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -uex
|
|
|
|
CFN_TOOLS_ROOT=/opt/aws/bin # Heat hard codes this
|
|
|
|
HEAT_API_SOURCE=https://github.com/heat-api/heat-jeos.git
|
|
|
|
OS_ROOT=/opt/stack
|
|
JEOS_ROOT=$OS_ROOT/heat-jeos
|
|
|
|
install-packages git-core python-psutil
|
|
|
|
mkdir -p $OS_ROOT
|
|
git clone $HEAT_API_SOURCE $JEOS_ROOT
|
|
cd $JEOS_ROOT
|
|
git checkout master
|
|
|
|
mkdir -p $CFN_TOOLS_ROOT
|
|
ln -sf $JEOS_ROOT/heat_jeos/cfntools/* $CFN_TOOLS_ROOT
|
|
|
|
# Boto in Ubuntu 12.10 is too old. Newer boto's aren't
|
|
# supported by heat-api-cfn. Bug ref: http://pad.lv/1122472
|
|
pip install 'boto==2.5.2'
|