From b3c7760ad4210d7c63f43493bdfffeac951c8470 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Thu, 4 Mar 2021 14:08:21 -0500 Subject: [PATCH] [fix] Use correct variable in so-proxy.sh --- setup/so-functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/so-functions b/setup/so-functions index ea5720a03..0b35c6e5f 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -2258,8 +2258,8 @@ set_proxy() { { echo "export use_proxy=on" echo "export http_proxy=\"${so_proxy}\"" - echo "export https_proxy=\"\$http_addr\"" - echo "export ftp_proxy=\"\$http_addr\"" + echo "export https_proxy=\"\$http_proxy\"" + echo "export ftp_proxy=\"\$http_proxy\"" echo "export no_proxy=\"${no_proxy_string}\"" } > /etc/profile.d/so-proxy.sh