mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 22:32:22 +00:00
27 lines
683 B
Bash
27 lines
683 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Outputs host and port for system HTTP proxy or zeroes if none or not
|
||
|
# configured.
|
||
|
|
||
|
export PATH=/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin
|
||
|
|
||
|
enabled=`system_profiler SPNetworkDataType|grep "HTTP Proxy Enabled"|awk {'sub(/^.*:[ \t]*/, "", $0); print $0;'}`
|
||
|
port=`system_profiler SPNetworkDataType|grep "HTTP Proxy Port"|awk {'sub(/^.*:[ \t]*/, "", $0); print $0;'}`
|
||
|
serv=`system_profiler SPNetworkDataType|grep "HTTP Proxy Server"|awk {'sub(/^.*:[ \t]*/, "", $0); print $0;'}`
|
||
|
|
||
|
if [ "$enabled" = "Yes" ]; then
|
||
|
if [ "$serv" ]; then
|
||
|
if [ ! "$port" ]; then
|
||
|
port=80
|
||
|
fi
|
||
|
|
||
|
echo $serv $port
|
||
|
else
|
||
|
echo 0.0.0.0 0
|
||
|
fi
|
||
|
else
|
||
|
echo 0.0.0.0 0
|
||
|
fi
|
||
|
|
||
|
exit 0
|