From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 843D8138334 for ; Sat, 31 Aug 2019 03:45:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B35A4E085B; Sat, 31 Aug 2019 03:45:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6B9E1E085B for ; Sat, 31 Aug 2019 03:45:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 96BFD34A739 for ; Sat, 31 Aug 2019 03:45:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D679F720 for ; Sat, 31 Aug 2019 03:44:58 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1567222806.4d9c10704b2eaf6cd7467ff0929a94e64429bfa6.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/glsa-check X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4d9c10704b2eaf6cd7467ff0929a94e64429bfa6 X-VCS-Branch: master Date: Sat, 31 Aug 2019 03:44:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a861a854-be11-4f00-b982-bbdbfbb73df3 X-Archives-Hash: 1517c9a4e935e5201a764be9ea12ba2c commit: 4d9c10704b2eaf6cd7467ff0929a94e64429bfa6 Author: Aaron Bauman gentoo org> AuthorDate: Fri Aug 30 19:18:56 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Aug 31 03:40:06 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4d9c1070 glsa-check: add exit code for affected GLSAs Bug: https://bugs.gentoo.org/587930 Reported-by: Bandie Yip Kojote ttygap.net> Signed-off-by: Aaron Bauman gentoo.org> Signed-off-by: Zac Medico gentoo.org> bin/glsa-check | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/glsa-check b/bin/glsa-check index 7a6916d15..95ef16fde 100755 --- a/bin/glsa-check +++ b/bin/glsa-check @@ -305,6 +305,7 @@ if mode == "test": summarylist(outputlist) else: sys.stdout.write("\n".join(outputlist)+"\n") + sys.exit(6) else: sys.stderr.write("This system is not affected by any of the listed GLSAs\n") sys.exit(0)