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 576DF138350 for ; Sun, 16 Feb 2020 06:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7107DE0885; Sun, 16 Feb 2020 06:47:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 55F56E0885 for ; Sun, 16 Feb 2020 06:47:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 CCCC534ED4F for ; Sun, 16 Feb 2020 06:47:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C018210C for ; Sun, 16 Feb 2020 06:47:28 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1581835600.3543f68d6fa8cce8c957e02a2aaae79914f40441.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openssh/openssh-8.2_p1-r1.ebuild X-VCS-Directories: net-misc/openssh/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 3543f68d6fa8cce8c957e02a2aaae79914f40441 X-VCS-Branch: master Date: Sun, 16 Feb 2020 06:47:28 +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: cecb8b42-46f6-48e9-a70c-d3c94b75396d X-Archives-Hash: b0bccf2e15c370a1f41cb0815c71394e commit: 3543f68d6fa8cce8c957e02a2aaae79914f40441 Author: Patrick McLean gentoo org> AuthorDate: Sun Feb 16 06:43:05 2020 +0000 Commit: Patrick McLean gentoo org> CommitDate: Sun Feb 16 06:46:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3543f68d net-misc/openssh-8.2_p1-r1: ewarn to restart sshd (bug #709748) Bug: https://bugs.gentoo.org/709748 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Patrick McLean gentoo.org> net-misc/openssh/openssh-8.2_p1-r1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net-misc/openssh/openssh-8.2_p1-r1.ebuild b/net-misc/openssh/openssh-8.2_p1-r1.ebuild index 2d64815e3fe..8f034074203 100644 --- a/net-misc/openssh/openssh-8.2_p1-r1.ebuild +++ b/net-misc/openssh/openssh-8.2_p1-r1.ebuild @@ -463,4 +463,10 @@ pkg_postinst() { elog "Otherwise you maybe unable to connect to this sshd using any AES CTR cipher." elog "" fi + + if has_version "<${CATEGORY}/${PN}-8.2_p1"; then + ewarn "After upgrading to openssh-8.2p1 please restart sshd, otherwise you" + ewarn "will not be able to establish new sessions. Restarting sshd over a ssh" + ewarn "connection is generally safe." + fi }