mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +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)
 |