From 4773bd609c0f788328d6ffc36f6cc9ea8f09a95f Mon Sep 17 00:00:00 2001 From: Bastien Curutchet Date: Tue, 22 Oct 2024 11:25:39 +0200 Subject: [PATCH] Drop --passive-ftp from wget's default options In some distributions (as Fedora), wget2 is used instead of wget. wget2 doesn't support the --passive-ftp option causing every download to fail. Also, according to wget's NEWS file [0], --passive-ftp is already the default in wget since 1.10. Remove the --passive-ftp from wget's default options. [0] https://gitlab.com/gnuwget/wget/-/blob/master/NEWS#L733 Signed-off-by: Bastien Curutchet --- config/global/download.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/global/download.in b/config/global/download.in index 57f42e6f..9a4d6cec 100644 --- a/config/global/download.in +++ b/config/global/download.in @@ -67,7 +67,7 @@ if DOWNLOAD_AGENT_WGET config DOWNLOAD_WGET_OPTIONS string "Extra options to wget" - default "--passive-ftp --tries=3 -nc --progress=dot:binary" + default "--tries=3 -nc --progress=dot:binary" endif