 ec98b44adc
			
		
	
	ec98b44adc
	
	
	
		
			
			CWD was not what it was expecting; it needs to run after the cd. Change-Id: I3e2d8b84d144e8af4cd1b88b1a45d3d2d0385017
		
			
				
	
	
		
			26 lines
		
	
	
		
			769 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			769 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash -xe
 | |
| 
 | |
| # Copyright (C) 2011-2013 OpenStack Foundation
 | |
| #
 | |
| # Licensed under the Apache License, Version 2.0 (the "License");
 | |
| # you may not use this file except in compliance with the License.
 | |
| # You may obtain a copy of the License at
 | |
| #
 | |
| #    http://www.apache.org/licenses/LICENSE-2.0
 | |
| #
 | |
| # Unless required by applicable law or agreed to in writing, software
 | |
| # distributed under the License is distributed on an "AS IS" BASIS,
 | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 | |
| # implied.
 | |
| #
 | |
| # See the License for the specific language governing permissions and
 | |
| # limitations under the License.
 | |
| 
 | |
| cd /opt/nodepool-scripts/
 | |
| ./install_devstack_dependencies.sh
 | |
| DISTRIB_CODENAME=`lsb_release -sc`
 | |
| python ./cache_devstack.py $DISTRIB_CODENAME
 | |
| 
 | |
| sync
 | |
| sleep 5
 |