From 6195450eb2721d987f185f127a5435e8c7f798cc Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Mon, 27 Feb 2017 23:57:04 +0000 Subject: [PATCH] No longer ignore duplicate apt sources in apt-get-wrapper. No longer acceptable because these generate lots of noise in the terminal. --- usr/lib/security-misc/apt-get-wrapper | 6 ------ 1 file changed, 6 deletions(-) diff --git a/usr/lib/security-misc/apt-get-wrapper b/usr/lib/security-misc/apt-get-wrapper index beba026..14b4e6a 100755 --- a/usr/lib/security-misc/apt-get-wrapper +++ b/usr/lib/security-misc/apt-get-wrapper @@ -41,12 +41,6 @@ while read -r -d $'\n' line; do exit 125 fi if [ "$first_two" = "w:" ]; then - first_nine="${line_lower_case:0:9}" - if [ "$first_nine" = "w: target" ]; then - if echo "$line" | grep -q "is configured multiple times in" ; then - continue - fi - fi exit 125 fi done < <( echo "$log" )