mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 07:29:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			490 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			490 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Exposes information about the OpenStack environment via the $os_info associative
 | 
						|
# array.
 | 
						|
#
 | 
						|
 | 
						|
# function os-info {
 | 
						|
 | 
						|
local tenant
 | 
						|
local tenant_format
 | 
						|
local tenant_formatted
 | 
						|
 | 
						|
unset os_info
 | 
						|
typeset -gA os_info
 | 
						|
 | 
						|
[[ -n "${OS_PROJECT_NAME+1}" ]] && tenant="${OS_PROJECT_NAME}"
 | 
						|
 | 
						|
if [[ "$tenant" != (none|) ]]; then
 | 
						|
  zstyle -s ':prezto:module:openstack:info:tenant' format 'tenant_format'
 | 
						|
  zformat -f tenant_formatted "$tenant_format" "v:$tenant"
 | 
						|
  os_info[tenant]="$tenant_formatted"
 | 
						|
fi
 | 
						|
 | 
						|
# }
 |