From a09681c416ada0fff87f6e8c0a7e4c0e979c6563 Mon Sep 17 00:00:00 2001 From: Karsten Merker Date: Sat, 20 Sep 2014 12:16:26 +0200 Subject: [PATCH] tasksel.pl: add missing "-o" parameter when calling apt This fixes bug #762253. Signed-off-by: Cyril Brulebois --- debian/changelog | 8 ++++++++ tasksel.pl | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 4846acbf..ab63b497 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +tasksel (3.26) UNRELEASED; urgency=medium + + [ Karsten Merker ] + * add missing "-o" parameter when calling apt with + APT::Acquire::Retries=3. Closes: #762253 + + -- Karsten Merker Sat, 20 Sep 2014 12:19:03 +0200 + tasksel (3.25) unstable; urgency=medium * Switch default desktop to gnome, based on prelimary results from diff --git a/tasksel.pl b/tasksel.pl index 2ef0f6ba..ffe54866 100755 --- a/tasksel.pl +++ b/tasksel.pl @@ -637,7 +637,7 @@ sub main { if exists $options{'debconf-apt-progress'}; push @cmd, "--"; } - push @cmd, qw{apt-get -q -y -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true APT::Acquire::Retries=3 install}; + push @cmd, qw{apt-get -q -y -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install}; # And finally, act on selected tasks. if (@tasks_install || @tasks_remove) {