emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#68258: closed ([PATCH 0/7] Upgrading Shepherd and moving the Hurd to


From: GNU bug Tracking System
Subject: bug#68258: closed ([PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x)
Date: Mon, 08 Jan 2024 23:56:01 +0000

Your message dated Tue, 09 Jan 2024 00:54:59 +0100
with message-id <875y032xf0.fsf@gnu.org>
and subject line Re: [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the 
Hurd to 0.10.x
has caused the debbugs.gnu.org bug report #68258,
regarding [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
68258: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68258
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 1/7] services: openssh: Add dependency on ‘networking’. Date: Fri, 5 Jan 2024 11:56:19 +0100
* gnu/services/ssh.scm (openssh-shepherd-service): Add ‘networking’ to
‘requirement’.

Change-Id: I14c48fe40cce86810a544de6bb7f925bc360653a
---
 gnu/services/ssh.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm
index 0abecd6b42..f759c5cf6e 100644
--- a/gnu/services/ssh.scm
+++ b/gnu/services/ssh.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014-2019, 2022, 2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2014-2019, 2022-2024 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2016 David Craven <david@craven.ch>
 ;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
@@ -592,7 +592,10 @@ (define (openssh-shepherd-service config)
 
   (list (shepherd-service
          (documentation "OpenSSH server.")
-         (requirement '(pam syslogd loopback))
+
+         ;; On the Hurd, this can only be started after pfinet is up, hence
+         ;; the dependency on 'networking'.
+         (requirement '(pam syslogd loopback networking))
          (provision '(ssh-daemon ssh sshd))
 
          (start #~(if #$inetd-style?
-- 
2.41.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Date: Tue, 09 Jan 2024 00:54:59 +0100 User-agent: Gnus/5.13 (Gnus v5.13)
Hello!

Janneke Nieuwenhuizen <janneke@gnu.org> skribis:

> Yes, it now works for me.  I'm not sure how I missed this, sorry :)

Wo0t!

> Finally shepherd 0.10 on the Hurd, well done!

Pushed as 3eac1c82f7f1547aa6819db867b071a4ee7de8e3!

Commit 766ac72dba36657ce217d055d7672cbf01bd32ce also fixes a bug in the
libevent backend of Fibers (fix is now upstream:
<https://github.com/wingo/fibers/pull/102>).

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]