From 80b9b45e312a25cfc4b36c87a3a29b7200f89538 Mon Sep 17 00:00:00 2001 From: Clint Byrum Date: Mon, 11 Feb 2013 14:23:02 -0800 Subject: [PATCH] Work around cfn API bug in HEAT w/ specific boto 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 --- elements/heat-jeos/install.d/05-heat-jeos | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/elements/heat-jeos/install.d/05-heat-jeos b/elements/heat-jeos/install.d/05-heat-jeos index ad220dfa8..d8fa07b94 100755 --- a/elements/heat-jeos/install.d/05-heat-jeos +++ b/elements/heat-jeos/install.d/05-heat-jeos @@ -18,3 +18,7 @@ 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'