mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
import sys
 | 
						|
import os
 | 
						|
 | 
						|
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
 | 
						|
 | 
						|
import cloudtool
 | 
						|
 | 
						|
ret = cloudtool.main()
 | 
						|
if ret: sys.exit(ret)
 |