7 lines
226 B
Bash
Executable file
7 lines
226 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# run this on a seprate system after deployment has been completed. its just a wrapper around curl
|
|
|
|
$IP=$1
|
|
$PORT=$2
|
|
|
|
curl --proxy $IP:$PORT --proxy-basic --proxy-user admin:ballsofsteel 'https://ipinfo.io'
|