mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			174 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			174 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| x=$1
 | |
| y=$2
 | |
| 
 | |
| for i in `seq $x $y`
 | |
| do
 | |
| 	stop_vm="GET  http://127.0.0.1/client/?command=stopVirtualMachine&id=$i	HTTP/1.0\n\n"
 | |
| 	echo -e $stop_vm | nc -v -q 60 127.0.0.1 8096
 | |
| done
 |