From 78f6261fccfae63331e38e494296209fb018ff49 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Fri, 22 May 2020 14:00:01 -0400 Subject: [PATCH] [fix] acng should be port 3142 not 3412 --- setup/so-functions | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/so-functions b/setup/so-functions index 934ff6cc1..303590d55 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -1478,12 +1478,12 @@ use_proxy() { if [[ $OS == 'centos' ]]; then printf '%s\n'\ - "proxy=$proxy_addr:3412" >> /etc/yum.conf + "proxy=$proxy_addr:3142" >> /etc/yum.conf else printf '%s\n'\ "Acquire {"\ - "HTTP::proxy \"$proxy_addr:3412\";"\ - "HTTPS::proxy \"$proxy_addr:3412\";"\ + "HTTP::proxy \"$proxy_addr:3142\";"\ + "HTTPS::proxy \"$proxy_addr:3142\";"\ "}" > /etc/apt/apt.conf.d/proxy.conf fi printf '%s\n'\