25 lines
335 B
Bash
25 lines
335 B
Bash
#!/bin/bash
|
|
|
|
##
|
|
|
|
reset
|
|
|
|
clear
|
|
|
|
##
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
##
|
|
|
|
echo "##"
|
|
echo "## creating new [success] record in the database"
|
|
echo "##"
|
|
|
|
curl -X POST \
|
|
https://osiris.yankee.valorantdigital.com/channel/monthly/games/success/add \
|
|
-H 'Content-Type: application/json' \
|
|
-d '{"url": "https://www.embanet.com/talisman.txt","hostIP":"asdf"}'
|