23 lines
761 B
Bash
23 lines
761 B
Bash
#!/bin/bash
|
|
if [ "$1" = "docker" ]; then
|
|
cd "/usr/bin/app" || exit
|
|
while :
|
|
do
|
|
clear
|
|
ipv4=$(curl -k -s https://am.i.mullvad.net/ip)
|
|
ipv6=$(curl -k -s https://ipv6.am.i.mullvad.net/)
|
|
python3 ./cloudflare_script.py 4 "$ipv4"
|
|
python3 ./cloudflare_script.py 6 "$ipv6"
|
|
sleep 120
|
|
done
|
|
else
|
|
if [ ! -e cloudflare.json ] || [ ! -e config.ini ]; then
|
|
echo "Cloudflare config not found, is the script run in the correct directory?"
|
|
else
|
|
ipv4=$(curl -k -s https://am.i.mullvad.net/ip -4)
|
|
ipv6=$(curl -k -s https://ipv6.am.i.mullvad.net/)
|
|
source venv/bin/activate
|
|
python3 ./cloudflare_script.py 4 "$ipv4"
|
|
python3 ./cloudflare_script.py 6 "$ipv6"
|
|
fi
|
|
fi |