Then creates symlinks into /opt/aws/bin using the included script. This replaces the heat-jeos element, so anything that references heat-jeos will need to be replaced with heat-cfntools Change-Id: Id286b005f69ea364357303b4bbc1ed29d4f0f8f9
		
			
				
	
	
		
			12 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -uex
 | 
						|
 | 
						|
install-packages \
 | 
						|
    python-pip python-psutil
 | 
						|
 | 
						|
# 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' heat-cfntools
 | 
						|
cfn-create-aws-symlinks --source /usr/local/bin
 |