25 lines
		
	
	
		
			319 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			319 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
|   | #!/bin/bash
 | ||
|  | 
 | ||
|  | ## | ||
|  | 
 | ||
|  | reset | ||
|  | 
 | ||
|  | clear | ||
|  | 
 | ||
|  | ## | ||
|  | 
 | ||
|  | set -e | ||
|  | 
 | ||
|  | set -x | ||
|  | 
 | ||
|  | ## | ||
|  | 
 | ||
|  | echo "##" | ||
|  | echo "## creating new [failure] record in the database" | ||
|  | echo "##" | ||
|  | 
 | ||
|  | curl -X POST    \
 | ||
|  | http://localhost:8888/channel/monthly/games/failure/add \
 | ||
|  | -H 'Content-Type: application/json' \
 | ||
|  | -d '{"url": "https://www.garudanet.com/talisman.txt","hostIP":"falcon"}' |