From 57e50269638ebaf77faa1a83ac8384b3920f6888 Mon Sep 17 00:00:00 2001 From: Olivier MEDOC Date: Thu, 21 Jan 2016 18:23:48 +0100 Subject: [PATCH] update-proxy: use curl instead of wget in archlinux in order to limit additional dependencies --- network/update-proxy-configs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/update-proxy-configs b/network/update-proxy-configs index 208363b..3264f6d 100755 --- a/network/update-proxy-configs +++ b/network/update-proxy-configs @@ -120,5 +120,5 @@ fi # Pacman (archlinux) also if [ -e /etc/pacman.conf ]; then - update_conf /etc/pacman.conf "XferCommand = http_proxy=$PROXY_ADDR /usr/bin/wget --passive-ftp -c -O %o %u" + update_conf /etc/pacman.conf "XferCommand = http_proxy=$PROXY_ADDR /usr/bin/curl -C - -f %u > %o" fi