22 lines
326 B
Bash
Executable File
22 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
|
|
reset
|
|
|
|
clear
|
|
|
|
##
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
##
|
|
|
|
echo "##"
|
|
echo "## creating new [success] record in the database"
|
|
echo "##"
|
|
|
|
curl -X POST http://localhost:8888/channel/monthly/games/success/add -H 'Content-Type: application/json' -d '{"url": "https://www.embanet.com/talisman.txt","hostIP":"asdf","hostName":"veneno"}'
|