From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60263) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j4izz-0002ta-Pk for guix-patches@gnu.org; Thu, 20 Feb 2020 05:24:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j4izy-0003Ek-VW for guix-patches@gnu.org; Thu, 20 Feb 2020 05:24:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:37907) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j4izy-0003EW-S8 for guix-patches@gnu.org; Thu, 20 Feb 2020 05:24:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j4izy-0008BY-PO for guix-patches@gnu.org; Thu, 20 Feb 2020 05:24:02 -0500 Subject: bug#38541: [PATCH] ssh: Add Kerberos-support to ssh:// daemon URLs Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20191209083737.GA10190@zpidnp36> <87a77uwkh1.fsf@gnu.org> <20200219125251.GC2938@zpidnp36> Date: Thu, 20 Feb 2020 11:23:47 +0100 In-Reply-To: <20200219125251.GC2938@zpidnp36> (Lars-Dominik Braun's message of "Wed, 19 Feb 2020 13:52:51 +0100") Message-ID: <87h7zlblqk.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Lars-Dominik Braun Cc: 38541-done@debbugs.gnu.org Hi Lars-Dominik, Lars-Dominik Braun skribis: > now that guile-ssh 0.12.0 has landed in guix (commit > 38655d7b88ae9d82208e5750480c9b91dd9dda8b), I=E2=80=99ve update the patch,= see attached > files. Awesome, pushed both! [...] > + (match (userauth-gssapi! session) > + ('success > + (session-set! session 'timeout timeout) > + session) > + (x > + (disconnect! session) > + (raise (condition > + (&message > + (message (format #f (G_ "SSH authentication failed= for '~a': ~a~%") > + host (get-error session))))))))))) Note that someone running this with an older Guile-SSH will get an unbound variable error. We should probably document the 0.12.0 requirement in the manual, at least. Thanks, Ludo=E2=80=99.