moved proxy_config to seperate file

This commit is contained in:
tke
2019-11-19 14:49:58 +01:00
parent ff0d64284b
commit 3cccfb530d
3 changed files with 30 additions and 18 deletions

View File

@@ -1,18 +1,6 @@
#!/bin/bash
proxy_ip=$(env | grep http_proxy | grep -Pio '[^@/:]+(?=:\d+/?$)')
proxy_port=$(env | grep http_proxy | grep -Pio '(?<=:)(\d+)(?=/?$)')
if [ -z "${proxy_ip}" ]; then
echo "Enter Proxy IP or Hostname (no port): "
read proxy_ip
fi
if [ -z "${proxy_ip}" ]; then
echo -n "Proxy-Port: "
read proxy_port
fi
echo "Using ${proxy_ip}:${proxy_port} as Proxy!"
path=$(dirname $(readlink -f "${0}"))
. "${path}/get_proxy.sh"
echo -n "Username: "
read username