From unknown Thu Mar 28 23:27:31 2024 Received: (at submit) by bugs.devuan.org; 3 Aug 2017 09:00:02 +0000 Return-Path: Delivered-To: devuanbugs@dyne.org Received: from mail.dyne.org [178.62.188.7] by fulcanelli with IMAP (fetchmail-6.3.26) for (single-drop); Thu, 03 Aug 2017 11:00:02 +0200 (CEST) Received: from smtp1.hushmail.com (smtp1.hushmail.com [65.39.178.135]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by tupac2.dyne.org (Postfix) with ESMTPS id C8E5E189E06 for ; Thu, 3 Aug 2017 08:56:02 +0000 (UTC) Authentication-Results: tupac2.dyne.org; dkim=pass reason="2048-bit key; unprotected key" header.d=hushmail.com header.i=@hushmail.com header.b=0vdIi/yx; dkim-adsp=pass; dkim-atps=neutral Received: from smtp1.hushmail.com (localhost [127.0.0.1]) by smtp1.hushmail.com (Postfix) with SMTP id EF2D540738 for ; Thu, 3 Aug 2017 08:55:59 +0000 (UTC) X-hush-tls-connected: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=hushmail.com; h=date:to:subject:from; s=hush; bh=VV2fKmtLSTTWs8KnysSUrk9J86A7yC/wVwa+82x/7/E=; b=0vdIi/yxdZL9dhQhb73yrELIahf9E4kvak+WSdmIAK0+wugsu99flGAOh0gm8iP3w7tA7ICuBUTgHp+QtadpxdrgRSND5CqJYpfZ5/cfPuipncuNudM1H6S2YDsBmkGXTqG/K0hBfEfB0iZUUMmvMkDvSRCp2JhRDccG+X0hsK6tK+TVw8b8lUoj4lFF1Km9V1NR+Sgb5oosPshDVwrvkLiBfUdch1g8KnJeyuLoI0pKgBgeR+iKJfoOL/RN62SBUVCO2IuoZExRCuneKXL7Jn8/QLI6e+7MF+XLXDoOR8pvGdEavk+FTcTIMKgIQ7LBPiUxuSHj0EmDeJinK2zoFw== Received: from smtp.hushmail.com (w2.hushmail.com [65.39.178.46]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp1.hushmail.com (Postfix) with ESMTPS for ; Thu, 3 Aug 2017 08:55:59 +0000 (UTC) Received: by smtp.hushmail.com (Postfix, from userid 99) id 96A70E031D; Thu, 3 Aug 2017 08:55:59 +0000 (UTC) MIME-Version: 1.0 Date: Thu, 03 Aug 2017 10:55:59 +0200 To: submit@bugs.devuan.org Subject: Syntax error in 05disable-suggests From: "Base Lab" Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="UTF-8" Message-Id: <20170803085559.96A70E031D@smtp.hushmail.com> X-Spam-Status: No, score=-0.8 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_HELO_PASS, SPF_PASS autolearn=disabled version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on tupac2 Package: devuan-baseconf Version: all There is a syntax error in /etc/apt/apt.conf.d/05disable-suggests : # cat /etc/apt/apt.conf.d/05disable-suggests APT:Install-Suggests "0"; Apt is not complaining about it but quoting 'man apt.conf': >> [...] Option specification is given with a double colon notation; for instance APT::Get::Assume-Yes is an option within the APT tool group, for the Get tool. [...] So the line sould be: APT::Install-Suggests "0"; Moreover, "0" is the default value, so disabling 05disable-suggests: # apt-config dump | grep -i -e 'sugg' -e 'recomm' APT::Install-Recommends "1"; APT::Install-Suggests "0";