git ls-files | misspellings -f - Source: https://github.com/lyda/misspell-check Change-Id: I7d63578734ca5cc1ec865a7d024c1a013d1ada87
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
#
 | 
						|
# source exerciserc
 | 
						|
#
 | 
						|
# Configure the DevStack exercise scripts
 | 
						|
# For best results, source this _after_ stackrc/localrc as it will set
 | 
						|
# values only if they are not already set.
 | 
						|
 | 
						|
# Max time to wait while vm goes from build to active state
 | 
						|
export ACTIVE_TIMEOUT=${ACTIVE_TIMEOUT:-30}
 | 
						|
 | 
						|
# Max time to wait for proper IP association and dis-association.
 | 
						|
export ASSOCIATE_TIMEOUT=${ASSOCIATE_TIMEOUT:-15}
 | 
						|
 | 
						|
# Max time till the vm is bootable
 | 
						|
export BOOT_TIMEOUT=${BOOT_TIMEOUT:-30}
 | 
						|
 | 
						|
# Max time from run instance command until it is running
 | 
						|
export RUNNING_TIMEOUT=${RUNNING_TIMEOUT:-$(($BOOT_TIMEOUT + $ACTIVE_TIMEOUT))}
 | 
						|
 | 
						|
# Max time to wait for a vm to terminate
 | 
						|
export TERMINATE_TIMEOUT=${TERMINATE_TIMEOUT:-30}
 | 
						|
 | 
						|
# Max time to wait for a euca-volume command to propagate
 | 
						|
export VOLUME_TIMEOUT=${VOLUME_TIMEOUT:-30}
 | 
						|
 | 
						|
# Max time to wait for a euca-delete command to propagate
 | 
						|
export VOLUME_DELETE_TIMEOUT=${SNAPSHOT_DELETE_TIMEOUT:-60}
 | 
						|
 | 
						|
# The size of the volume we want to boot from; some storage back-ends
 | 
						|
# do not allow a disk resize, so it's important that this can be tuned
 | 
						|
export DEFAULT_VOLUME_SIZE=${DEFAULT_VOLUME_SIZE:-1}
 |